add getmntent_r interface (all of mntent is nonstandard anyway)
[musl] / src / math / s_lrintf.c
1 #include <math.h>
2
3 // FIXME: incorrect exception behavior
4
5 long lrintf(float x)
6 {
7         return rintf(x);
8 }