diff options
Diffstat (limited to 'src/math/nexttowardl.c')
-rw-r--r-- | src/math/nexttowardl.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/math/nexttowardl.c b/src/math/nexttowardl.c new file mode 100644 index 00000000..c393ce97 --- /dev/null +++ b/src/math/nexttowardl.c @@ -0,0 +1,6 @@ +#include "libm.h" + +long double nexttowardl(long double x, long double y) +{ + return nextafterl(x, y); +} |