diff options
author | 2006-10-13 03:50:14 +0000 | |
---|---|---|
committer | 2006-10-13 03:50:14 +0000 | |
commit | 672632077946ac80d1099e81c8577685ef39f56b (patch) | |
tree | 61f5c2668d5ab72d7782885cd31da3e1ef565ada /lib/libc/stdlib/strtod.c | |
parent | sync (diff) | |
download | wireguard-openbsd-672632077946ac80d1099e81c8577685ef39f56b.tar.xz wireguard-openbsd-672632077946ac80d1099e81c8577685ef39f56b.zip |
__mips64__ handling too.. sigh
Diffstat (limited to 'lib/libc/stdlib/strtod.c')
-rw-r--r-- | lib/libc/stdlib/strtod.c | 9 |
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> |