aboutsummaryrefslogtreecommitdiff
path: root/src/math/remainderf.c
blob: 43966c300643880307a8cbd3c0052a0e2e162608 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <math.h>

float remainderf(float x, float y)
{
	int q;
	return remquof(x, y, &q);
}

weak_alias(remainderf, dremf);


#ifdef TEST
int
main(void) {
	return 0;
}
#endif