cosmopolitan/libc/math/drem.c

8 lines
99 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#include "libc/math/math.h"
double drem(double x, double y)
{
int q;
return remquo(x, y, &q);
}