summaryrefslogtreecommitdiff
path: root/lib/libm/remainderf.c
blob: 6a80a25c0ef585b326f56793eb181ba5d38e693e (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "libm.h"

#include <math.h>

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

weak_alias(remainderf, dremf);