1 /* @(#)w_scalb.c 5.1 93/09/24 */
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
10 * ====================================================
13 #include <sys/cdefs.h>
14 #if defined(LIBM_SCCS) && !defined(lint)
15 __RCSID("$NetBSD: w_scalb.c,v 1.9 2002/05/26 22:02:02 wiz Exp $");
19 * wrapper scalb(double x, double fn) is provide for
20 * passing various standard test suite. One
21 * should use scalbn() instead.
25 #include "math_private.h"
31 scalb(double x
, int fn
) /* wrapper scalb */
34 scalb(double x
, double fn
) /* wrapper scalb */
38 return __ieee754_scalb(x
,fn
);
41 z
= __ieee754_scalb(x
,fn
);
42 if(_LIB_VERSION
== _IEEE_
) return z
;
43 if(!(finite(z
)||isnan(z
))&&finite(x
)) {
44 return __kernel_standard(x
,(double)fn
,32); /* scalb overflow */
47 return __kernel_standard(x
,(double)fn
,33); /* scalb underflow */
50 if(!finite(fn
)) errno
= ERANGE
;