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
/
ldexpl.c
blob
fd145ccc5658930ecdb6bf7da9d6ed02929d1865
1
#include <math.h>
2
3
long double
ldexpl
(
long double
x
,
int
n
)
4
{
5
return
scalbnl
(
x
,
n
);
6
}