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