Initial commit
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
#include "math.h"
|
||||
|
||||
// Definition of math functions needed for fdlibm
|
||||
inline double fabs(double x) { return __builtin_fabs(x); }
|
||||
inline double floor(double x) { return __builtin_floor(x); }
|
||||
inline double copysign(double x, double y) { return __builtin_copysign(x, y); }
|
||||
Reference in New Issue
Block a user