Sign in
cobalt
/
cobalt.git
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
math
/
remainder.c
blob: 612155fedaa586f8f9f53651fef0df563e8574ef [
file
]
#include
<math.h>
double
remainder
(
double
x
,
double
y
)
{
int
q
;
return
remquo
(
x
,
y
,
&
q
);
}
weak_alias
(
remainder
,
drem
);