xref: /haiku/src/system/libroot/posix/musl/math/nexttowardl.c (revision 21258e2674226d6aa732321b6f8494841895af5f)
1 #include <math.h>
2 
3 long double nexttowardl(long double x, long double y)
4 {
5 	return nextafterl(x, y);
6 }
7