From 0b8481982efa5a2fbb83aa12204256ce07220437 Mon Sep 17 00:00:00 2001 From: alfred Date: Tue, 28 May 2002 17:51:46 +0000 Subject: Assume __STDC__, remove non-__STDC__ code. Reviewed by: md5 --- lib/msun/src/e_pow.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'lib/msun/src/e_pow.c') diff --git a/lib/msun/src/e_pow.c b/lib/msun/src/e_pow.c index 18ba4fa..8d57b14 100644 --- a/lib/msun/src/e_pow.c +++ b/lib/msun/src/e_pow.c @@ -62,11 +62,7 @@ static char rcsid[] = "$FreeBSD$"; #include "math.h" #include "math_private.h" -#ifdef __STDC__ static const double -#else -static double -#endif bp[] = {1.0, 1.5,}, dp_h[] = { 0.0, 5.84962487220764160156e-01,}, /* 0x3FE2B803, 0x40000000 */ dp_l[] = { 0.0, 1.35003920212974897128e-08,}, /* 0x3E4CFDEB, 0x43CFD006 */ @@ -99,12 +95,7 @@ ivln2 = 1.44269504088896338700e+00, /* 0x3FF71547, 0x652B82FE =1/ln2 */ ivln2_h = 1.44269502162933349609e+00, /* 0x3FF71547, 0x60000000 =24b 1/ln2*/ ivln2_l = 1.92596299112661746887e-08; /* 0x3E54AE0B, 0xF85DDF44 =1/ln2 tail*/ -#ifdef __STDC__ double __ieee754_pow(double x, double y) -#else - double __ieee754_pow(x,y) - double x, y; -#endif { double z,ax,z_h,z_l,p_h,p_l; double y1,t1,t2,r,s,t,u,v,w; -- cgit v1.1