summaryrefslogtreecommitdiff
path: root/src/math/remainderf.c
blob: b418bbfff49c1c0fe3b032696bf336900c308048 (plain) (blame)
1
2
3
4
5
6
7
#include <math.h>

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