xref
: /
haiku
/
src
/
system
/
libroot
/
posix
/
musl
/
math
/
ldexpl.c
(revision 15fb7d88e971c4d6c787c6a3a5c159afb1ebf77b)
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