d0b469b9a8c63db372f435b2216cb65df91f7263
[musl] / 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 }