math: rewrite remainder functions (remainder, remquo, fmod, modf)
[musl] / src / math / remainderf.c
1 #include <math.h>
2
3 float remainderf(float x, float y)
4 {
5         int q;
6         return remquof(x, y, &q);
7 }