diff options
Diffstat (limited to 'src/math/nextafter.c')
-rw-r--r-- | src/math/nextafter.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/nextafter.c b/src/math/nextafter.c index ab5795a4..ab5389fc 100644 --- a/src/math/nextafter.c +++ b/src/math/nextafter.c @@ -29,3 +29,11 @@ double nextafter(double x, double y) FORCE_EVAL(x*x + ux.f*ux.f); return ux.f; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |