#ifndef MSL_CPP_CMATH_H #define MSL_CPP_CMATH_H #include #ifdef __cplusplus namespace std { using ::acos; using ::acosf; using ::asin; using ::atan; using ::atan2; using ::ceil; using ::ceilf; using ::copysign; using ::cos; using ::cosf; using ::fabsf; using ::floor; using ::floorf; using ::fmod; using ::fmodf; using ::frexp; using ::ldexp; using ::modf; using ::modff; using ::nan; using ::pow; using ::scalbn; using ::sin; using ::sinf; using ::sqrt; using ::sqrtf; using ::tan; using ::tanf; } // namespace std #endif #endif