diff options
author | phantom <phantom@FreeBSD.org> | 2001-12-14 11:36:37 +0000 |
---|---|---|
committer | phantom <phantom@FreeBSD.org> | 2001-12-14 11:36:37 +0000 |
commit | e19de1ca7045af9c082151e6054a81cbed69548f (patch) | |
tree | b93f347b4252a78a1fcf7668a64caa277b6def7c | |
parent | 949b1b871256f0db7f206e7619a336951f43f8b5 (diff) | |
download | FreeBSD-src-e19de1ca7045af9c082151e6054a81cbed69548f.zip FreeBSD-src-e19de1ca7045af9c082151e6054a81cbed69548f.tar.gz |
* cleanup comments and defines
Reviewed by: bde
-rw-r--r-- | lib/libc/stdlib/strtod.c | 9 |
1 files changed, 1 insertions, 8 deletions
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 <sys/types.h> - -#if defined(i386) || (defined(mips) && defined(MIPSEL)) || \ - defined(__ia64__) || defined(__alpha__) #if BYTE_ORDER == BIG_ENDIAN #define IEEE_BIG_ENDIAN #else |