xref: /haiku/src/system/libroot/posix/musl/math/scalblnf.c (revision a5061ecec55353a5f394759473f1fd6df04890da)
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 }
12