mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
16 lines
186 B
C++
16 lines
186 B
C++
#ifndef STD_CMATH_H_
|
|
#define STD_CMATH_H_
|
|
|
|
|
|
namespace std {
|
|
float fabs(float num) {
|
|
return fabsf(num);
|
|
}
|
|
|
|
float abs(float num) {
|
|
return fabsf(num);
|
|
}
|
|
} // namespace std
|
|
|
|
#endif
|