Sign in
mojo
/
mojo-tools
/
c07399d071c59658a5c2bed81dee6e9ed9142442
/
.
/
fusl
/
src
/
math
/
ldexp.c
blob: 4a7424b941b91ea9f775013e0a28359886182fa1 [
file
] [
log
] [
blame
]
#include
<math.h>
double
ldexp
(
double
x
,
int
n
)
{
return
scalbn
(
x
,
n
);
}