Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
musl
/
src
/
math
/
scalblnf.c
blob: d8e8166b10d6ea53c6630a252498e3a4d9cc124c [
file
] [
log
] [
blame
]
#include
<limits.h>
#include
<math.h>
float
scalblnf
(
float
x
,
long
n
)
{
if
(
n
>
INT_MAX
)
n
=
INT_MAX
;
else
if
(
n
<
INT_MIN
)
n
=
INT_MIN
;
return
scalbnf
(
x
,
n
);
}