summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorderaadt <>2006-10-13 03:50:14 +0000
committerderaadt <>2006-10-13 03:50:14 +0000
commit16f3998fffb9fa6b0a8b894d1ba84c94e3fc6c69 (patch)
tree3777848621b8d170c93eebc1653d0566c89f9be1
parent07212f91ab3c6af351512d481d3ba5dd504471f8 (diff)
downloadopenbsd-16f3998fffb9fa6b0a8b894d1ba84c94e3fc6c69.tar.gz
openbsd-16f3998fffb9fa6b0a8b894d1ba84c94e3fc6c69.tar.bz2
openbsd-16f3998fffb9fa6b0a8b894d1ba84c94e3fc6c69.zip
__mips64__ handling too.. sigh
-rw-r--r--src/lib/libc/stdlib/strtod.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/libc/stdlib/strtod.c b/src/lib/libc/stdlib/strtod.c
index 94c6b5876d..a8a52e02c5 100644
--- a/src/lib/libc/stdlib/strtod.c
+++ b/src/lib/libc/stdlib/strtod.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strtod.c,v 1.27 2006/10/12 05:58:57 deraadt Exp $ */ 1/* $OpenBSD: strtod.c,v 1.28 2006/10/13 03:50:14 deraadt Exp $ */
2/**************************************************************** 2/****************************************************************
3 * 3 *
4 * The author of this software is David M. Gay. 4 * The author of this software is David M. Gay.
@@ -90,9 +90,10 @@
90 */ 90 */
91 91
92#if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ 92#if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \
93 defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \ 93 defined(__mips__) || defined(__mips64__) || defined(__ns32k__) || \
94 defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) || \ 94 defined(__alpha__) || defined(__powerpc__) || defined(__m88k__) || \
95 defined(__amd64__) || defined(__sh__) || defined(__sparc64__) || \ 95 defined(__hppa__) || defined(__amd64__) || defined(__sh__) || \
96 defined(__sparc64__) || \
96 (defined(__arm__) && defined(__VFP_FP__)) 97 (defined(__arm__) && defined(__VFP_FP__))
97 98
98#include <sys/types.h> 99#include <sys/types.h>