repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
check for kernel support before allowing robust mutex creation
[musl.git]
/
src
/
math
/
remainder.c
blob
612155fedaa586f8f9f53651fef0df563e8574ef
1
#include <math.h>
2
3
double
remainder
(
double
x
,
double
y
)
4
{
5
int
q
;
6
return
remquo
(
x
,
y
, &
q
);
7
}
8
9
weak_alias
(
remainder
,
drem
);