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