Files
wasm-test/math.c
T
2026-09-16 20:53:06 +02:00

7 lines
248 B
C

#include "math.h"
// Definition of math functions needed for fdlibm
double fabs(double x) { return __builtin_fabs(x); }
double floor(double x) { return __builtin_floor(x); }
double copysign(double x, double y) { return __builtin_copysign(x, y); }