Sign in
mojo
/
mojo
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
math
/
ldexpf.c
blob: 3bad5f393f5a1f499ccb8c79c96856f760d30502 [
file
] [
log
] [
blame
]
#include
<math.h>
float
ldexpf
(
float
x
,
int
n
)
{
return
scalbnf
(
x
,
n
);
}