lroundf.c 64 B

123456
  1. #include <math.h>
  2. long lroundf(float x)
  3. {
  4. return roundf(x);
  5. }