Update.
[glibc.git] / sysdeps / libm-ieee754 / e_scalb.c
blobd9a326b2b24df8ce25abd752276773b996ff4040
1 /* @(#)e_scalb.c 5.1 93/09/24 */
2 /*
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunPro, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
9 * is preserved.
10 * ====================================================
13 #if defined(LIBM_SCCS) && !defined(lint)
14 static char rcsid[] = "$NetBSD: e_scalb.c,v 1.6 1995/05/10 20:46:09 jtc Exp $";
15 #endif
18 * __ieee754_scalb(x, fn) is provide for
19 * passing various standard test suite. One
20 * should use scalbn() instead.
23 #include "math.h"
24 #include "math_private.h"
26 #ifdef _SCALB_INT
27 #ifdef __STDC__
28 double __ieee754_scalb(double x, int fn)
29 #else
30 double __ieee754_scalb(x,fn)
31 double x; int fn;
32 #endif
33 #else
34 #ifdef __STDC__
35 double __ieee754_scalb(double x, double fn)
36 #else
37 double __ieee754_scalb(x,fn)
38 double x, fn;
39 #endif
40 #endif
42 #ifdef _SCALB_INT
43 return __scalbn(x,fn);
44 #else
45 if (__isnan(x)||__isnan(fn)) return x*fn;
46 if (!__finite(fn)) {
47 if(fn>0.0) return x*fn;
48 else if (x == 0)
49 return x;
50 else if (!__finite (x))
51 return __nan ("");
52 else return x/(-fn);
54 if (__rint(fn)!=fn) return __nan ("");
55 if ( fn > 65000.0) return __scalbn(x, 65000);
56 if (-fn > 65000.0) return __scalbn(x,-65000);
57 return __scalbn(x,(int)fn);
58 #endif