Files
geant4/source/global/STLInterface/wrappers/SUN-CC/cmath
T
2016-06-08 15:09:25 +02:00

11 lines
237 B
Plaintext

#ifndef __CMATH__
#define __CMATH__
#include <math.h>
inline float abs (float x) { return fabs (x); }
inline double abs (double x) { return fabs (x); }
inline long double abs (long double x) { return fabs (x); }
#endif // __CMATH__