summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorderaadt <>2006-10-12 01:49:34 +0000
committerderaadt <>2006-10-12 01:49:34 +0000
commitd9d2b8832720c8390c587ada79c6d0b65bb3dd2b (patch)
tree4cb477a161136e93e170faff10efa3688136e2bb /src
parentb9332e1290954897a261f0914bde6a8d3bfbdd4f (diff)
downloadopenbsd-d9d2b8832720c8390c587ada79c6d0b65bb3dd2b.tar.gz
openbsd-d9d2b8832720c8390c587ada79c6d0b65bb3dd2b.tar.bz2
openbsd-d9d2b8832720c8390c587ada79c6d0b65bb3dd2b.zip
use __amd64__ instead, until lint is fixed
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 98a49e570f..27c08103a6 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.25 2006/10/12 00:27:47 deraadt Exp $ */ 1/* $OpenBSD: strtod.c,v 1.26 2006/10/12 01:49:34 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(__x86_64__) || defined(__sh__) || \ 95 defined(__amd64__) || defined(__sh__) || \
96 (defined(__arm__) && defined(__VFP_FP__)) 96 (defined(__arm__) && defined(__VFP_FP__))
97 97
98#include <sys/types.h> 98#include <sys/types.h>