musl-tcc/src/math/remainderf.c

10 lines
125 B
C

#include <math.h>
float remainderf(float x, float y)
{
int q;
return remquof(x, y, &q);
}
weak_alias(remainderf, dremf);