diff options
author | etheisen <> | 1996-11-14 00:00:59 +0000 |
---|---|---|
committer | etheisen <> | 1996-11-14 00:00:59 +0000 |
commit | 2036abc9d34f5e65a683fc6d270af8504797a422 (patch) | |
tree | 2b3f1d9f631ed763a8951395a8f90a69b9a42487 | |
parent | 1f8d0b5a3bacff15ff3b1582bcd6f7476935c855 (diff) | |
download | openbsd-2036abc9d34f5e65a683fc6d270af8504797a422.tar.gz openbsd-2036abc9d34f5e65a683fc6d270af8504797a422.tar.bz2 openbsd-2036abc9d34f5e65a683fc6d270af8504797a422.zip |
Include <machine/types.h> for now.
-rw-r--r-- | src/lib/libc/stdlib/strtod.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/stdlib/strtod.c b/src/lib/libc/stdlib/strtod.c index 2fb5caed10..c83c603d83 100644 --- a/src/lib/libc/stdlib/strtod.c +++ b/src/lib/libc/stdlib/strtod.c | |||
@@ -90,11 +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.4 1996/08/19 08:33:50 tholo Exp $"; | 93 | static char *rcsid = "$OpenBSD: strtod.c,v 1.5 1996/11/14 00:00:59 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 <machine/endian.h> | 99 | #include <machine/endian.h> |
99 | #if BYTE_ORDER == BIG_ENDIAN | 100 | #if BYTE_ORDER == BIG_ENDIAN |
100 | #define IEEE_BIG_ENDIAN | 101 | #define IEEE_BIG_ENDIAN |