diff options
author | etheisen <etheisen@cvs.openbsd.org> | 1996-11-14 00:01:00 +0000 |
---|---|---|
committer | etheisen <etheisen@cvs.openbsd.org> | 1996-11-14 00:01:00 +0000 |
commit | cc5d8372b9269722d546ec5e90d60768845cff6a (patch) | |
tree | 825ac8c7fce0324878fadd84aaa97553060cf2ed | |
parent | 95a4afef17ef9a333a9e86f3cc7a8c11bdd1ddea (diff) |
Include <machine/types.h> for now.
-rw-r--r-- | lib/libc/stdlib/strtod.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c index 2fb5caed103..c83c603d837 100644 --- a/lib/libc/stdlib/strtod.c +++ b/lib/libc/stdlib/strtod.c @@ -90,11 +90,12 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strtod.c,v 1.4 1996/08/19 08:33:50 tholo Exp $"; +static char *rcsid = "$OpenBSD: strtod.c,v 1.5 1996/11/14 00:00:59 etheisen Exp $"; #endif /* LIBC_SCCS and not lint */ #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ defined(__mips__) || defined(__ns32k__) || defined(__alpha__) +#include <machine/types.h> #include <machine/endian.h> #if BYTE_ORDER == BIG_ENDIAN #define IEEE_BIG_ENDIAN |