Sign in
mojo
/
mojo
/
de6c20aad64d53a7061c10e724e9924cfec679f6
/
.
/
fusl
/
src
/
math
/
remainderf.c
blob: e3369613ca2fcddc4c4df7f3d726897962976d4e [
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
);