repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: Add new APIs tc[gs]etwinsize()
[newlib-cygwin.git]
/
newlib
/
libm
/
machine
/
spu
/
s_ldexp.c
blob
268eb67a425b1ed5006b1e14988e845c9e3f3a8a
1
#include <math.h>
2
#include
"headers/ldexp.h"
3
4
double
ldexp
(
double
x
,
int
exp
)
5
{
6
return
_ldexp
(
x
,
exp
);
7
}