From e19de1ca7045af9c082151e6054a81cbed69548f Mon Sep 17 00:00:00 2001 From: phantom Date: Fri, 14 Dec 2001 11:36:37 +0000 Subject: * cleanup comments and defines Reviewed by: bde --- lib/libc/stdlib/strtod.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'lib/libc') diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c index a6550d6..e18a852 100644 --- a/lib/libc/stdlib/strtod.c +++ b/lib/libc/stdlib/strtod.c @@ -96,11 +96,6 @@ static char sccsid[] = "@(#)strtod.c 8.1 (Berkeley) 6/4/93"; */ /* - * #define IEEE_LITTLE_ENDIAN for IEEE-arithmetic machines where the least - * significant byte has the lowest address. - * #define IEEE_BIG_ENDIAN for IEEE-arithmetic machines where the most - * significant byte has the lowest address. - * #define Long int on machines with 32-bit ints and 64-bit longs. * #define Sudden_Underflow for IEEE-format machines without gradual * underflow (i.e., that flush to zero on underflow). * #define IBM for IBM mainframe-style floating-point arithmetic. @@ -124,10 +119,8 @@ static char sccsid[] = "@(#)strtod.c 8.1 (Berkeley) 6/4/93"; * FLT_RADIX, FLT_ROUNDS, and DBL_MAX. */ +#if defined(__i386__) || defined(__ia64__) || defined(__alpha__) #include - -#if defined(i386) || (defined(mips) && defined(MIPSEL)) || \ - defined(__ia64__) || defined(__alpha__) #if BYTE_ORDER == BIG_ENDIAN #define IEEE_BIG_ENDIAN #else -- cgit v1.1