diff options
author | mickey <> | 2004-01-28 01:51:40 +0000 |
---|---|---|
committer | mickey <> | 2004-01-28 01:51:40 +0000 |
commit | 1fd63fa21c75cf59edbf8a60cfbd14a5f3a85fcd (patch) | |
tree | 000f70745e0e7422f52fb3dc84dc4e766692e24d /src/lib/libc/stdlib/strtod.c | |
parent | bdd09b71535d0903b10cdbf54ac05e7e99bfbe79 (diff) | |
download | openbsd-1fd63fa21c75cf59edbf8a60cfbd14a5f3a85fcd.tar.gz openbsd-1fd63fa21c75cf59edbf8a60cfbd14a5f3a85fcd.tar.bz2 openbsd-1fd63fa21c75cf59edbf8a60cfbd14a5f3a85fcd.zip |
the rest of the libs stuff; from art@ again
Diffstat (limited to 'src/lib/libc/stdlib/strtod.c')
-rw-r--r-- | src/lib/libc/stdlib/strtod.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/strtod.c b/src/lib/libc/stdlib/strtod.c index 17d26a1dc3..55c455892a 100644 --- a/src/lib/libc/stdlib/strtod.c +++ b/src/lib/libc/stdlib/strtod.c | |||
@@ -90,12 +90,13 @@ | |||
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.16 2002/12/02 15:38:54 millert Exp $"; | 93 | static char *rcsid = "$OpenBSD: strtod.c,v 1.17 2004/01/28 01:51:39 mickey 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 | defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) | 98 | defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) || \ |
99 | defined(__x86_64__) | ||
99 | #include <sys/types.h> | 100 | #include <sys/types.h> |
100 | #if BYTE_ORDER == BIG_ENDIAN | 101 | #if BYTE_ORDER == BIG_ENDIAN |
101 | #define IEEE_BIG_ENDIAN | 102 | #define IEEE_BIG_ENDIAN |