use #if LDBL_MANT_DIG == ... instead of custom LD80 etc macros
[libm] / src / math / nexttowardl.c
1 #include "libm.h"
2 long double nexttowardl(long double x, long double y)
3 {
4         return nextafterl(x, y);
5 }