math: add (obsolete) bsd drem and finite functions
[musl] / src / math / remainder.c
1 #include <math.h>
2 #include "libc.h"
3
4 double remainder(double x, double y)
5 {
6         int q;
7         return remquo(x, y, &q);
8 }
9
10 weak_alias(remainder, drem);