diff options
Diffstat (limited to 'src/math/llroundf.c')
-rw-r--r-- | src/math/llroundf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/llroundf.c b/src/math/llroundf.c index 19eb77ee..2fbd9607 100644 --- a/src/math/llroundf.c +++ b/src/math/llroundf.c @@ -4,3 +4,11 @@ long long llroundf(float x) { return roundf(x); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |