summaryrefslogtreecommitdiff
path: root/include/std/cmath.h
blob: ad1775c2d30f0f6b632c852846a38d1ad2d1dc96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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