xref: /minix3/lib/libm/src/w_scalb.c (revision 2fe8fb192fe7e8720e3e7a77f928da545e872a6a)
1*2fe8fb19SBen Gras /* @(#)w_scalb.c 5.1 93/09/24 */
2*2fe8fb19SBen Gras /*
3*2fe8fb19SBen Gras  * ====================================================
4*2fe8fb19SBen Gras  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5*2fe8fb19SBen Gras  *
6*2fe8fb19SBen Gras  * Developed at SunPro, a Sun Microsystems, Inc. business.
7*2fe8fb19SBen Gras  * Permission to use, copy, modify, and distribute this
8*2fe8fb19SBen Gras  * software is freely granted, provided that this notice
9*2fe8fb19SBen Gras  * is preserved.
10*2fe8fb19SBen Gras  * ====================================================
11*2fe8fb19SBen Gras  */
12*2fe8fb19SBen Gras 
13*2fe8fb19SBen Gras #include <sys/cdefs.h>
14*2fe8fb19SBen Gras #if defined(LIBM_SCCS) && !defined(lint)
15*2fe8fb19SBen Gras __RCSID("$NetBSD: w_scalb.c,v 1.9 2002/05/26 22:02:02 wiz Exp $");
16*2fe8fb19SBen Gras #endif
17*2fe8fb19SBen Gras 
18*2fe8fb19SBen Gras /*
19*2fe8fb19SBen Gras  * wrapper scalb(double x, double fn) is provide for
20*2fe8fb19SBen Gras  * passing various standard test suite. One
21*2fe8fb19SBen Gras  * should use scalbn() instead.
22*2fe8fb19SBen Gras  */
23*2fe8fb19SBen Gras 
24*2fe8fb19SBen Gras #include "math.h"
25*2fe8fb19SBen Gras #include "math_private.h"
26*2fe8fb19SBen Gras 
27*2fe8fb19SBen Gras #include <errno.h>
28*2fe8fb19SBen Gras 
29*2fe8fb19SBen Gras #ifdef _SCALB_INT
30*2fe8fb19SBen Gras double
scalb(double x,int fn)31*2fe8fb19SBen Gras scalb(double x, int fn)		/* wrapper scalb */
32*2fe8fb19SBen Gras #else
33*2fe8fb19SBen Gras double
34*2fe8fb19SBen Gras scalb(double x, double fn)	/* wrapper scalb */
35*2fe8fb19SBen Gras #endif
36*2fe8fb19SBen Gras {
37*2fe8fb19SBen Gras #ifdef _IEEE_LIBM
38*2fe8fb19SBen Gras 	return __ieee754_scalb(x,fn);
39*2fe8fb19SBen Gras #else
40*2fe8fb19SBen Gras 	double z;
41*2fe8fb19SBen Gras 	z = __ieee754_scalb(x,fn);
42*2fe8fb19SBen Gras 	if(_LIB_VERSION == _IEEE_) return z;
43*2fe8fb19SBen Gras 	if(!(finite(z)||isnan(z))&&finite(x)) {
44*2fe8fb19SBen Gras 	    return __kernel_standard(x,(double)fn,32); /* scalb overflow */
45*2fe8fb19SBen Gras 	}
46*2fe8fb19SBen Gras 	if(z==0.0&&z!=x) {
47*2fe8fb19SBen Gras 	    return __kernel_standard(x,(double)fn,33); /* scalb underflow */
48*2fe8fb19SBen Gras 	}
49*2fe8fb19SBen Gras #ifndef _SCALB_INT
50*2fe8fb19SBen Gras 	if(!finite(fn)) errno = ERANGE;
51*2fe8fb19SBen Gras #endif
52*2fe8fb19SBen Gras 	return z;
53*2fe8fb19SBen Gras #endif
54*2fe8fb19SBen Gras }
55