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