blob: ab0d998b6b5da69211140931da74e243d68b8bb2 [file] [log] [blame]
#include "libc.h"
#include <math.h>
double remainder(double x, double y) {
int q;
return remquo(x, y, &q);
}
weak_alias(remainder, drem);