summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorderaadt <>2006-10-12 05:58:57 +0000
committerderaadt <>2006-10-12 05:58:57 +0000
commit07212f91ab3c6af351512d481d3ba5dd504471f8 (patch)
tree57da3ed85511638adc8f99993e5b53a83056fe40 /src
parentd9d2b8832720c8390c587ada79c6d0b65bb3dd2b (diff)
downloadopenbsd-07212f91ab3c6af351512d481d3ba5dd504471f8.tar.gz
openbsd-07212f91ab3c6af351512d481d3ba5dd504471f8.tar.bz2
openbsd-07212f91ab3c6af351512d481d3ba5dd504471f8.zip
sparc64 should be in the #ifdef
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/stdlib/strtod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/strtod.c b/src/lib/libc/stdlib/strtod.c
index 27c08103a6..94c6b5876d 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.26 2006/10/12 01:49:34 deraadt Exp $ */ 1/* $OpenBSD: strtod.c,v 1.27 2006/10/12 05:58:57 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.
@@ -92,7 +92,7 @@
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(__ns32k__) || defined(__alpha__) || \
94 defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) || \ 94 defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) || \
95 defined(__amd64__) || defined(__sh__) || \ 95 defined(__amd64__) || defined(__sh__) || defined(__sparc64__) || \
96 (defined(__arm__) && defined(__VFP_FP__)) 96 (defined(__arm__) && defined(__VFP_FP__))
97 97
98#include <sys/types.h> 98#include <sys/types.h>