tp/include/std/cmath.h

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