#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