commit 1609264beffe5c2b5a7786062c363d410ecc4059
parent 1973d61e282fe433531aa3bb649c688e3085e54f
Author: ukai <ukai>
Date: Tue, 25 Dec 2001 16:49:42 +0000
[#496610] #include <sys/wait.h>
Diffstat:
4 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,11 @@
+2001-12-26 Fumitoshi UKAI <ukai@debian.or.jp>
+
+ * [#496610] #include <sys/wait.h>
+ by Kazuhiro NISHIYAMA (znz)
+ * main.c: #if defined(HAVE_WAITPID) || defined(HAVE_WAIT3)
+ * etc.c: ditto
+ * file.c: ditto
+
2001-12-26 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* [w3m-dev 02725] bcopy, bzero
diff --git a/etc.c b/etc.c
@@ -14,7 +14,9 @@
#include <sys/types.h>
#include <time.h>
+#if defined(HAVE_WAITPID) || defined(HAVE_WAIT3)
#include <sys/wait.h>
+#endif
#include <signal.h>
#ifdef __WATT32__
diff --git a/file.c b/file.c
@@ -4,7 +4,9 @@
#include "myctype.h"
#include <signal.h>
#include <setjmp.h>
+#if defined(HAVE_WAITPID) || defined(HAVE_WAIT3)
#include <sys/wait.h>
+#endif
#include <stdio.h>
#include <time.h>
#include <sys/stat.h>
diff --git a/main.c b/main.c
@@ -6,7 +6,9 @@
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
+#if defined(HAVE_WAITPID) || defined(HAVE_WAIT3)
#include <sys/wait.h>
+#endif
#include <time.h>
#include "terms.h"
#include "myctype.h"