xref: /haiku/src/system/libroot/posix/musl/math/remainderf.c (revision 42f51416eb68b0a79f50fe185b6d0ecb064c62dc)
1 #include <math.h>
2 #include "libm.h"
3 
4 float remainderf(float x, float y)
5 {
6 	int q;
7 	return remquof(x, y, &q);
8 }
9 
10 weak_alias(remainderf, dremf);
11