This website requires JavaScript.
Explore
Help
Register
Sign In
Lab
/
cosmopolitan
Watch
1
Star
0
Fork
You've already forked cosmopolitan
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
8da931a7f6
cosmopolitan
/
libc
/
math
/
drem.c
8 lines
99 B
C
Raw
Blame
History
#
include
"libc/math/math.h"
double
drem
(
double
x
,
double
y
)
{
int
q
;
return
remquo
(
x
,
y
,
&
q
)
;
}
Reference in New Issue
View Git Blame
Copy Permalink