summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2006-10-13 03:50:15 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2006-10-13 03:50:15 +0000
commitfd00d0ccae7b152a812141e69a0c84a3aa7380f7 (patch)
tree035f9e9063e26cdb1ff72c96b5924bcffd9e8f0b /lib
parent7651c2fd3a718defe1ce7a3dae3267ba54033ea4 (diff)
__mips64__ handling too.. sigh
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/stdlib/strtod.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c
index 94c6b5876d3..a8a52e02c58 100644
--- a/lib/libc/stdlib/strtod.c
+++ b/lib/libc/stdlib/strtod.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: strtod.c,v 1.27 2006/10/12 05:58:57 deraadt Exp $ */
+/* $OpenBSD: strtod.c,v 1.28 2006/10/13 03:50:14 deraadt Exp $ */
/****************************************************************
*
* The author of this software is David M. Gay.
@@ -90,9 +90,10 @@
*/
#if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \
- defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \
- defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) || \
- defined(__amd64__) || defined(__sh__) || defined(__sparc64__) || \
+ defined(__mips__) || defined(__mips64__) || defined(__ns32k__) || \
+ defined(__alpha__) || defined(__powerpc__) || defined(__m88k__) || \
+ defined(__hppa__) || defined(__amd64__) || defined(__sh__) || \
+ defined(__sparc64__) || \
(defined(__arm__) && defined(__VFP_FP__))
#include <sys/types.h>