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