mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
62ab7c9a0b
* d_a_obj_snowEffTag OK * d_a_obj_digplace OK * d_a_tag_lv2prchk OK * remove asm / fix tag_waterfall warnings
13 lines
161 B
C++
13 lines
161 B
C++
#ifndef STD_CMATH_H_
|
|
#define STD_CMATH_H_
|
|
|
|
#include "MSL_C/math.h"
|
|
|
|
namespace std {
|
|
float fabs(float num) {
|
|
return fabsf(num);
|
|
}
|
|
} // namespace std
|
|
|
|
#endif
|