cosmopolitan/libc/math/remainderf.c

10 lines
135 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#include "libc/math/libm.h"
float remainderf(float x, float y)
{
int q;
return remquof(x, y, &q);
}
weak_alias(remainderf, dremf);