Sign in
mojo
/
mojo-tools
/
83365b19d08baa9ba3f254866a59b01eba496f4f
/
.
/
fusl
/
src
/
math
/
remainderf.c
blob: 420d3bfc447b2ef14ed93266da2abc082fc40fc5 [
file
]
#include
<math.h>
#include
"libc.h"
float
remainderf
(
float
x
,
float
y
)
{
int
q
;
return
remquof
(
x
,
y
,
&
q
);
}
weak_alias
(
remainderf
,
dremf
);