llroundf.c 70 B

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