avoid spurious lookup failures from badly-behaved nameservers
[musl] / src / math / remainderf.c
1 #include <math.h>
2 #include "libc.h"
3
4 float remainderf(float x, float y)
5 {
6         int q;
7         return remquof(x, y, &q);
8 }
9
10 weak_alias(remainderf, dremf);