Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
4a8335b2248d934e2e40386af4f1b0495b3c173d
/
.
/
src
/
math
/
ldexpl.c
blob: fd145ccc5658930ecdb6bf7da9d6ed02929d1865 [
file
]
#include
<math.h>
long
double
ldexpl
(
long
double
x
,
int
n
)
{
return
scalbnl
(
x
,
n
);
}