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