Sign in
cobalt
/
cobalt
/
cf191b148f6a83454a62c5b73e5db05ad9cd362b
/
.
/
third_party
/
musl
/
src
/
math
/
remainder.c
blob: 6cd089c467cee72945007f92814f60926c98c836 [
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
);