Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
musl
/
src
/
math
/
remainderf.c
blob: 420d3bfc447b2ef14ed93266da2abc082fc40fc5 [
file
] [
log
] [
blame
]
#include
<math.h>
#include
"libc.h"
float
remainderf
(
float
x
,
float
y
)
{
int
q
;
return
remquof
(
x
,
y
,
&
q
);
}
weak_alias
(
remainderf
,
dremf
);