llroundl.c 76 B

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