scalbnf
if((j>>23)<=0) z = scalbnf(z,n); /* subnormal output */
return scalbnf(x,fn);
if ( fn > (float)65000.0) return scalbnf(x, 65000);
if (-fn > (float)65000.0) return scalbnf(x,-65000);
return scalbnf(x,(int)fn);
float scalbnf(float, int);
return (scalbnf(x, (n > NMAX) ? NMAX : (n < NMIN) ? NMIN : (int)n));
__strong_reference(scalbnf, ldexpf);
float (scalbnf)(float x, int n) { n_float++; }