aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/syswait.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syswait.h b/src/syswait.h
index 692c202da1b..23690f141cb 100644
--- a/src/syswait.h
+++ b/src/syswait.h
@@ -38,7 +38,8 @@ Boston, MA 02111-1307, USA. */
38 definitions of some of the macros and `the convex' does too. 38 definitions of some of the macros and `the convex' does too.
39 HAVE_SYS_WAIT_H probably won't be defined on them if they still get 39 HAVE_SYS_WAIT_H probably won't be defined on them if they still get
40 used, but for safety... -- fx */ 40 used, but for safety... -- fx */
41#if (defined (HPUX) && !defined (HPUX8)) || defined (convex) 41/* ISC 4.1 doesn't have wait3, but does have sys/wait.h. */
42#if (defined(HPUX) && !defined(HPUX8)) || defined(convex) || defined(ISC4_1)
42#undef HAVE_SYS_WAIT_H 43#undef HAVE_SYS_WAIT_H
43#endif 44#endif
44 45