diff options
Diffstat (limited to 'src/math/floorf.c')
-rw-r--r-- | src/math/floorf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/floorf.c b/src/math/floorf.c index dceec739..d91524b7 100644 --- a/src/math/floorf.c +++ b/src/math/floorf.c @@ -25,3 +25,11 @@ float floorf(float x) } return u.f; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |