X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fmath%2Fremainderf.c;h=420d3bfc447b2ef14ed93266da2abc082fc40fc5;hb=db66ef1f7db7c5b672591a97a97bc789c9efe2f3;hp=b418bbfff49c1c0fe3b032696bf336900c308048;hpb=ee2ee92d62c43f6658d37ddea4c316d2089d0fe9;p=oweals%2Fmusl.git diff --git a/src/math/remainderf.c b/src/math/remainderf.c index b418bbff..420d3bfc 100644 --- a/src/math/remainderf.c +++ b/src/math/remainderf.c @@ -1,7 +1,10 @@ #include +#include "libc.h" float remainderf(float x, float y) { int q; return remquof(x, y, &q); } + +weak_alias(remainderf, dremf);