ldso: correct condition for local symbol handling in do_relocs
[musl.git] / src / math / lrintf.c
blobca0b6a46aaed3cf97d61724923593ea1b9d7aaf3
1 #include <math.h>
3 /* uses LONG_MAX > 2^24, see comments in lrint.c */
5 long lrintf(float x)
7 return rintf(x);