aboutsummaryrefslogtreecommitdiff
#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