1
0

nexttowardl.c 103 B

123456
  1. #include <math.h>
  2. long double nexttowardl(long double x, long double y)
  3. {
  4. return nextafterl(x, y);
  5. }