diff options
author | 2004-01-28 01:51:39 +0000 | |
---|---|---|
committer | 2004-01-28 01:51:39 +0000 | |
commit | b54c369931e66fac6933915cba01dfe673622841 (patch) | |
tree | 31284225e4dac6902245e3032cbf61bb6969bf21 /lib/libc/stdlib/strtod.c | |
parent | things for amd64; from art@ (diff) | |
download | wireguard-openbsd-b54c369931e66fac6933915cba01dfe673622841.tar.xz wireguard-openbsd-b54c369931e66fac6933915cba01dfe673622841.zip |
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 |