diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-01-28 01:51:41 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-01-28 01:51:41 +0000 |
commit | 9d528e83e791de449894d39edc1e23ee0468c688 (patch) | |
tree | cd881b249c1dc3eb91421939a80c4a25f516c6c3 /lib/libc/stdlib/strtod.c | |
parent | 5ce3883eea6680a651056bbc57c9f80bf1260376 (diff) |
the rest of the libs stuff; from art@ again
Diffstat (limited to 'lib/libc/stdlib/strtod.c')
-rw-r--r-- | lib/libc/stdlib/strtod.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c index 17d26a1dc33..55c455892ab 100644 --- a/lib/libc/stdlib/strtod.c +++ b/lib/libc/stdlib/strtod.c @@ -90,12 +90,13 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strtod.c,v 1.16 2002/12/02 15:38:54 millert Exp $"; +static char *rcsid = "$OpenBSD: strtod.c,v 1.17 2004/01/28 01:51:39 mickey Exp $"; #endif /* LIBC_SCCS and not lint */ #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \ - defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) + defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) || \ + defined(__x86_64__) #include <sys/types.h> #if BYTE_ORDER == BIG_ENDIAN #define IEEE_BIG_ENDIAN |