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