commit cb2f9b483a09d9b2f122272a1a30857bdb4ec19e
parent 85132307560fb07e38dde99919d2b278c9d15c3b
Author: tgoodwin <tgoodwin>
Date: Fri, 24 Jul 1998 16:00:13 +0000
get the <sys/wait.h> stuff right this time
Diffstat:
3 files changed, 3 insertions(+), 8 deletions(-)
diff --git a/proto.h b/proto.h
@@ -56,6 +56,9 @@ extern void qsort(void *, size_t, size_t, int (*)(const void *, const void *));
#include <unistd.h>
#endif
+#if HAVE_SYS_WAIT_H
+#include <sys/wait.h>
+#endif
/* Fake the POSIX wait() macros if we don't have them. */
#ifndef WIFEXITED
diff --git a/system-bsd.c b/system-bsd.c
@@ -3,10 +3,6 @@ allows partial writes */
#include <errno.h>
-#if HAVE_SYS_WAIT_H
-#include <sys/wait.h>
-#endif
-
#include "rc.h"
#include "jbwrap.h"
diff --git a/wait.c b/wait.c
@@ -2,10 +2,6 @@
#include <errno.h>
-#if HAVE_SYS_WAIT_H
-#include <sys/wait.h>
-#endif
-
bool forked = FALSE;
typedef struct Pid Pid;