initial commit
[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 }