diff options
-rw-r--r-- | src/lib/libc/stdlib/strtod.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/strtod.c b/src/lib/libc/stdlib/strtod.c index c83c603d83..8d271f2c50 100644 --- a/src/lib/libc/stdlib/strtod.c +++ b/src/lib/libc/stdlib/strtod.c | |||
@@ -90,13 +90,12 @@ | |||
90 | */ | 90 | */ |
91 | 91 | ||
92 | #if defined(LIBC_SCCS) && !defined(lint) | 92 | #if defined(LIBC_SCCS) && !defined(lint) |
93 | static char *rcsid = "$OpenBSD: strtod.c,v 1.5 1996/11/14 00:00:59 etheisen Exp $"; | 93 | static char *rcsid = "$OpenBSD: strtod.c,v 1.6 1996/11/14 14:18:43 etheisen Exp $"; |
94 | #endif /* LIBC_SCCS and not lint */ | 94 | #endif /* LIBC_SCCS and not lint */ |
95 | 95 | ||
96 | #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ | 96 | #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ |
97 | defined(__mips__) || defined(__ns32k__) || defined(__alpha__) | 97 | defined(__mips__) || defined(__ns32k__) || defined(__alpha__) |
98 | #include <machine/types.h> | 98 | #include <sys/types.h> |
99 | #include <machine/endian.h> | ||
100 | #if BYTE_ORDER == BIG_ENDIAN | 99 | #if BYTE_ORDER == BIG_ENDIAN |
101 | #define IEEE_BIG_ENDIAN | 100 | #define IEEE_BIG_ENDIAN |
102 | #else | 101 | #else |