X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fremainder.c;h=6cd089c467cee72945007f92814f60926c98c836;hb=2fab90a71acd3698954c08b9062db67188443dd7;hp=ed5c477eabe1c4f88472c53b50cb2ab51d5c59bc;hpb=ee2ee92d62c43f6658d37ddea4c316d2089d0fe9;p=musl diff --git a/src/math/remainder.c b/src/math/remainder.c index ed5c477e..6cd089c4 100644 --- a/src/math/remainder.c +++ b/src/math/remainder.c @@ -1,7 +1,10 @@ #include +#include "libc.h" double remainder(double x, double y) { int q; return remquo(x, y, &q); } + +weak_alias(remainder, drem);