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