diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-10-12 00:27:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-10-12 00:27:48 +0000 |
commit | 15a64c9eaee8735965e2321e3565f8414c639f61 (patch) | |
tree | 913e42dc8b5bb8c3632547aad17b7d1df032cc84 /lib | |
parent | 1eee43099356da9c6aa1e08d66c50f951088433d (diff) |
reorder #if tests because apparently on amd64 cpp proceeds to blow it's
own brains out, and then takes lint down with it. To be investigated...
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/stdlib/strtod.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c index 924d4641875..98a49e570f2 100644 --- a/lib/libc/stdlib/strtod.c +++ b/lib/libc/stdlib/strtod.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strtod.c,v 1.24 2006/10/10 22:03:22 miod Exp $ */ +/* $OpenBSD: strtod.c,v 1.25 2006/10/12 00:27:47 deraadt Exp $ */ /**************************************************************** * * The author of this software is David M. Gay. @@ -92,8 +92,9 @@ #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \ defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) || \ - defined(__x86_64__) || (defined(__arm__) && defined(__VFP_FP__)) || \ - defined(__sh__) + defined(__x86_64__) || defined(__sh__) || \ + (defined(__arm__) && defined(__VFP_FP__)) + #include <sys/types.h> #if BYTE_ORDER == BIG_ENDIAN #define IEEE_BIG_ENDIAN |