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