Berry failed port attempt leftovers :(
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m9s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m9s
This commit is contained in:
5
libmath/math.c
Normal file
5
libmath/math.c
Normal file
@@ -0,0 +1,5 @@
|
||||
#include <math.h>
|
||||
|
||||
double fmod (double a, double b) { return a - ((double)((long long)(a / b))) * b; }
|
||||
|
||||
float fmodf (float a, float b) { return a - ((float)((long)(a / b))) * b; }
|
||||
Reference in New Issue
Block a user