lrintf.c 115 B

12345678
  1. #include <math.h>
  2. /* uses LONG_MAX > 2^24, see comments in lrint.c */
  3. long lrintf(float x)
  4. {
  5. return rintf(x);
  6. }