ed5c477eabe1c4f88472c53b50cb2ab51d5c59bc
[musl] / src / math / remainder.c
1 #include <math.h>
2
3 double remainder(double x, double y)
4 {
5         int q;
6         return remquo(x, y, &q);
7 }