xref: /aosp_15_r20/external/musl/src/math/remainderf.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <math.h>
2 
remainderf(float x,float y)3 float remainderf(float x, float y)
4 {
5 	int q;
6 	return remquof(x, y, &q);
7 }
8 
9 weak_alias(remainderf, dremf);
10