workaround gcc bug 46926 by providing a dumb sincos implementation
[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 }