Import Geant4 0.1.0 source tree
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
#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__
|
||||
Reference in New Issue
Block a user