initial check-in, version 0.5.0
[musl] / src / math / e_scalb.c
1
2 /* @(#)e_scalb.c 1.3 95/01/18 */
3 /*
4  * ====================================================
5  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6  *
7  * Developed at SunSoft, a Sun Microsystems, Inc. business.
8  * Permission to use, copy, modify, and distribute this
9  * software is freely granted, provided that this notice 
10  * is preserved.
11  * ====================================================
12  */
13
14 /*
15  * scalb(x, fn) is provide for
16  * passing various standard test suite. One 
17  * should use scalbn() instead.
18  */
19
20 #include <math.h>
21 #include "math_private.h"
22
23 double
24 scalb(double x, double fn)
25 {
26         if (isnan(x)||isnan(fn)) return x*fn;
27         if (!isfinite(fn)) {
28             if(fn>0.0) return x*fn;
29             else       return x/(-fn);
30         }
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);
35 }