Initial commit

This commit is contained in:
2026-09-16 19:23:09 +02:00
commit 1697016838
17 changed files with 1329 additions and 0 deletions
+6
View File
@@ -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); }