aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlexey Zelkin <phantom@FreeBSD.org>2001-12-14 11:36:37 +0000
committerAlexey Zelkin <phantom@FreeBSD.org>2001-12-14 11:36:37 +0000
commite578c6f17ca7a0f3ab1bc7e8f06249187bcec067 (patch)
treeb93f347b4252a78a1fcf7668a64caa277b6def7c /lib
parent0cbe2ad6853f5d8804022511e0c74cb478bce710 (diff)
downloadsrc-e578c6f17ca7a0f3ab1bc7e8f06249187bcec067.tar.gz
src-e578c6f17ca7a0f3ab1bc7e8f06249187bcec067.zip
* cleanup comments and defines
Reviewed by: bde
Notes
Notes: svn path=/head/; revision=87872
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/stdlib/strtod.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c
index a6550d69c85c..e18a85265392 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