diff options
author | 2006-10-12 05:58:57 +0000 | |
---|---|---|
committer | 2006-10-12 05:58:57 +0000 | |
commit | e0b370f666f97dc62003e652c0c0da7fc0fe56ed (patch) | |
tree | 2c6b823b89a54d3161749c429110b1fc9de5cedc /lib/libc/stdlib/strtod.c | |
parent | Should be correct for landisk. (diff) | |
download | wireguard-openbsd-e0b370f666f97dc62003e652c0c0da7fc0fe56ed.tar.xz wireguard-openbsd-e0b370f666f97dc62003e652c0c0da7fc0fe56ed.zip |
sparc64 should be in the #ifdef
Diffstat (limited to 'lib/libc/stdlib/strtod.c')
-rw-r--r-- | lib/libc/stdlib/strtod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c index 27c08103a68..94c6b5876d3 100644 --- a/lib/libc/stdlib/strtod.c +++ b/lib/libc/stdlib/strtod.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strtod.c,v 1.26 2006/10/12 01:49:34 deraadt Exp $ */ +/* $OpenBSD: strtod.c,v 1.27 2006/10/12 05:58:57 deraadt Exp $ */ /**************************************************************** * * The author of this software is David M. Gay. @@ -92,7 +92,7 @@ #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \ defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) || \ - defined(__amd64__) || defined(__sh__) || \ + defined(__amd64__) || defined(__sh__) || defined(__sparc64__) || \ (defined(__arm__) && defined(__VFP_FP__)) #include <sys/types.h> |