repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
don't reject unknown/future flags in sigaltstack, allow SS_AUTODISARM
[musl.git]
/
src
/
math
/
scalblnf.c
blob
d8e8166b10d6ea53c6630a252498e3a4d9cc124c
1
#include <limits.h>
2
#include <math.h>
3
4
float
scalblnf
(
float
x
,
long
n
)
5
{
6
if
(
n
>
INT_MAX
)
7
n
=
INT_MAX
;
8
else if
(
n
<
INT_MIN
)
9
n
=
INT_MIN
;
10
return
scalbnf
(
x
,
n
);
11
}