diff options
Diffstat (limited to 'src/math/fmodf.c')
-rw-r--r-- | src/math/fmodf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/fmodf.c b/src/math/fmodf.c index ff58f933..fccd9f30 100644 --- a/src/math/fmodf.c +++ b/src/math/fmodf.c @@ -63,3 +63,11 @@ float fmodf(float x, float y) ux.i = uxi; return ux.f; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |