Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/regress/include/okheaders kjk reported this does not work on...



details:   https://anonhg.NetBSD.org/src/rev/de76ba7acb1b
branches:  trunk
changeset: 555491:de76ba7acb1b
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Nov 18 23:21:38 2003 +0000

description:
kjk reported this does not work on the vax.
- don't include <ieeefp.h> if vax
- never include <sys/float_ieee754.h>

diffstat:

 regress/include/okheaders/symbolcheck.c |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (21 lines):

diff -r 70ba18b07414 -r de76ba7acb1b regress/include/okheaders/symbolcheck.c
--- a/regress/include/okheaders/symbolcheck.c   Tue Nov 18 23:07:37 2003 +0000
+++ b/regress/include/okheaders/symbolcheck.c   Tue Nov 18 23:21:38 2003 +0000
@@ -57,7 +57,6 @@
 #include <sys/file.h>
 #include <sys/filedesc.h>
 #include <sys/filio.h>
-#include <sys/float_ieee754.h>
 #include <sys/gmon.h>
 #include <sys/hash.h>
 #include <sys/inttypes.h>
@@ -244,7 +243,9 @@
 #include <hesiod.h>
 #include <histedit.h>
 #include <iconv.h>
+#ifndef __vax__
 #include <ieeefp.h>
+#endif
 #include <ifaddrs.h>
 #include <inttypes.h>
 #include <iso646.h>



Home | Main Index | Thread Index | Old Index