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_scalbn.c
blob
58e161dfc4a6e019589fc0d0e658b924c30ba0c1
1
#include <math.h>
2
#include
"headers/scalbn.h"
3
4
double
scalbn
(
double
x
,
int
exp
)
5
{
6
return
_scalbn
(
x
,
exp
);
7
}