Sign in
cobalt
/
cobalt
/
6c50c1c49c8a70d13dcb47674d70da002e02256c
/
.
/
third_party
/
musl
/
src
/
math
/
ldexpf.c
blob: 3bad5f393f5a1f499ccb8c79c96856f760d30502 [
file
]
#include
<math.h>
float
ldexpf
(
float
x
,
int
n
)
{
return
scalbnf
(
x
,
n
);
}