add legacy getloadavg api
[musl.git] / src / math / remainder.c
blob6cd089c467cee72945007f92814f60926c98c836
1 #include <math.h>
2 #include "libc.h"
4 double remainder(double x, double y)
6 int q;
7 return remquo(x, y, &q);
10 weak_alias(remainder, drem);