Sign in
mojo
/
mojo-tools
/
c07399d071c59658a5c2bed81dee6e9ed9142442
/
.
/
fusl
/
src
/
math
/
remainder.c
blob: ac85ee7282441681eda353c17b38a2f9ab8da4e9 [
file
] [
log
] [
blame
]
#include
<math.h>
#include
"libc.h"
double
remainder
(
double
x
,
double
y
)
{
int
q
;
return
remquo
(
x
,
y
,
&
q
);
}
weak_alias
(
remainder
,
drem
);