diff options
Diffstat (limited to 'src/math/modfl.c')
-rw-r--r-- | src/math/modfl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/modfl.c b/src/math/modfl.c index a47b1924..3343b798 100644 --- a/src/math/modfl.c +++ b/src/math/modfl.c @@ -51,3 +51,11 @@ long double modfl(long double x, long double *iptr) return -y; } #endif + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |