xref: /haiku/src/system/libroot/posix/musl/math/remainderf.c (revision 6a2d53e7237764eab0c7b6d121772f26d636fb60)
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