lroundl.c 70 B

123456
  1. #include <math.h>
  2. long lroundl(long double x)
  3. {
  4. return roundl(x);
  5. }