remove unused __brk function/source file
[musl.git] / src / math / remainderf.c
blob420d3bfc447b2ef14ed93266da2abc082fc40fc5
1 #include <math.h>
2 #include "libc.h"
4 float remainderf(float x, float y)
6 int q;
7 return remquof(x, y, &q);
10 weak_alias(remainderf, dremf);