diff options
Diffstat (limited to 'src/math/nexttoward.c')
-rw-r--r-- | src/math/nexttoward.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/nexttoward.c b/src/math/nexttoward.c index 827ee5c3..78763c1d 100644 --- a/src/math/nexttoward.c +++ b/src/math/nexttoward.c @@ -40,3 +40,11 @@ double nexttoward(double x, long double y) return ux.f; } #endif + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |