BizHawk/waterbox/libc/functions/math/remainder.c

11 lines
144 B
C

#include <math.h>
#include "_alias.h"
double remainder(double x, double y)
{
int q;
return remquo(x, y, &q);
}
weak_alias(remainder, drem);