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