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