Expand PMF_FN_* macros.
[netbsd-mini2440.git] / lib / libm / src / e_scalb.c
blob54b5e199f0fde2fcc1af5f4e19a83cbba7532bea
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 #include <sys/cdefs.h>
14 #if defined(LIBM_SCCS) && !defined(lint)
15 __RCSID("$NetBSD: e_scalb.c,v 1.8 1999/07/02 15:37:41 simonb Exp $");
16 #endif
19 * __ieee754_scalb(x, fn) is provide for
20 * passing various standard test suite. One
21 * should use scalbn() instead.
24 #include "math.h"
25 #include "math_private.h"
27 #ifdef _SCALB_INT
28 double
29 __ieee754_scalb(double x, int fn)
30 #else
31 double
32 __ieee754_scalb(double x, double fn)
33 #endif
35 #ifdef _SCALB_INT
36 return scalbn(x,fn);
37 #else
38 if (isnan(x)||isnan(fn)) return x*fn;
39 if (!finite(fn)) {
40 if(fn>0.0) return x*fn;
41 else return x/(-fn);
43 if (rint(fn)!=fn) return (fn-fn)/(fn-fn);
44 if ( fn > 65000.0) return scalbn(x, 65000);
45 if (-fn > 65000.0) return scalbn(x,-65000);
46 return scalbn(x,(int)fn);
47 #endif