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