lround.c 63 B

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