github.com/afumu/libc@v0.0.6/musl/src/math/remainder.c (about) 1 #include <math.h> 2 3 double remainder(double x, double y) 4 { 5 int q; 6 return remquo(x, y, &q); 7 } 8 9 weak_alias(remainder, drem);