xref
: /
haiku
/
src
/
system
/
libroot
/
posix
/
musl
/
math
/
ldexp.c
(revision a127b88ecbfab58f64944c98aa47722a18e363b2)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
math.h
>
2
3
double
ldexp
(
double
x
,
int
n
)
4
{
5
return
scalbn
(
x
,
n
);
6
}
7