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
add PTHREAD_NULL
[musl.git]
/
src
/
math
/
ldexp.c
blob
f4d1cd6af5d8b815064251c9d3f062709f2d87d0
1
#include <math.h>
2
3
double
ldexp
(
double
x
,
int
n
)
4
{
5
return
scalbn
(
x
,
n
);
6
}