diff options
-rw-r--r-- | src/lib/libc/stdlib/strtod.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/strtod.c b/src/lib/libc/stdlib/strtod.c index 5899bc1ee5..8e839d6155 100644 --- a/src/lib/libc/stdlib/strtod.c +++ b/src/lib/libc/stdlib/strtod.c | |||
@@ -90,13 +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.18 2004/02/01 07:11:24 drahn Exp $"; | 93 | static char *rcsid = "$OpenBSD: strtod.c,v 1.19 2004/02/03 16:52:11 drahn 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 | defined(__x86_64__) || (defined(__arm__) && defined(__VFP_FP__)) |
100 | #include <sys/types.h> | 100 | #include <sys/types.h> |
101 | #if BYTE_ORDER == BIG_ENDIAN | 101 | #if BYTE_ORDER == BIG_ENDIAN |
102 | #define IEEE_BIG_ENDIAN | 102 | #define IEEE_BIG_ENDIAN |
@@ -105,7 +105,7 @@ static char *rcsid = "$OpenBSD: strtod.c,v 1.18 2004/02/01 07:11:24 drahn Exp $" | |||
105 | #endif | 105 | #endif |
106 | #endif | 106 | #endif |
107 | 107 | ||
108 | #if defined(__arm__) && !defined(_VFP_FP__) | 108 | #if defined(__arm__) && !defined(__VFP_FP__) |
109 | /* | 109 | /* |
110 | * Although the CPU is little endian the FP has different | 110 | * Although the CPU is little endian the FP has different |
111 | * byte and word endianness. The byte order is still little endian | 111 | * byte and word endianness. The byte order is still little endian |