1 /* origin: FreeBSD /usr/src/lib/msun/src/e_scalb.c */
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunSoft, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
10 * ====================================================
13 * scalb(x, fn) is provide for
14 * passing various standard test suite. One
15 * should use scalbn() instead.
21 double scalb(double x, double fn)
23 if (isnan(x) || isnan(fn))
31 if (rint(fn) != fn) return (fn-fn)/(fn-fn);
32 if ( fn > 65000.0) return scalbn(x, 65000);
33 if (-fn > 65000.0) return scalbn(x,-65000);
34 return scalbn(x,(int)fn);