github.com/afumu/libc@v0.0.6/musl/src/math/scalblnf.c (about)

     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  }