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