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