diff options
Diffstat (limited to 'src/math/remainderf.c')
-rw-r--r-- | src/math/remainderf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/remainderf.c b/src/math/remainderf.c index bf1d7b28..43966c30 100644 --- a/src/math/remainderf.c +++ b/src/math/remainderf.c @@ -7,3 +7,11 @@ float remainderf(float x, float y) } weak_alias(remainderf, dremf); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |