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