blob: 25334a4377d41c1a9bb8c4bbd9ea7d2c7866955a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <math.h>
double remainder(double x, double y)
{
int q;
return remquo(x, y, &q);
}
weak_alias(remainder, drem);
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|