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