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