llrintf.c 122 B

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