Sign in
mojo
/
mojo-tools
/
73e948c3cd78ca019b82d8ad10c2326e3920fffc
/
.
/
fusl
/
src
/
math
/
ldexpf.c
blob: 71ccf56e897eea52cb24980a6a9003f8b878cc2d [
file
] [
log
] [
blame
]
#include
<math.h>
float
ldexpf
(
float
x
,
int
n
)
{
return
scalbnf
(
x
,
n
);
}