Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
math
/
scalbln.c
blob: e6f3f195c856afcf0eafbb0071654800d7b8921c [
file
] [
log
] [
blame
]
#include
<limits.h>
#include
<math.h>
double
scalbln
(
double
x
,
long
n
)
{
if
(
n
>
INT_MAX
)
n
=
INT_MAX
;
else
if
(
n
<
INT_MIN
)
n
=
INT_MIN
;
return
scalbn
(
x
,
n
);
}