diff options
| author | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-12-25 16:49:42 +0000 | 
|---|---|---|
| committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-12-25 16:49:42 +0000 | 
| commit | 501827a1048aef1f43f3fc92213ae3a064e6ef34 (patch) | |
| tree | 6614437a8112f664d2ea075eb1d9ab273d0186fe | |
| parent | [w3m-dev 02725] bcopy, bzero (diff) | |
| download | w3m-501827a1048aef1f43f3fc92213ae3a064e6ef34.tar.gz w3m-501827a1048aef1f43f3fc92213ae3a064e6ef34.zip | |
[#496610] #include <sys/wait.h>
| -rw-r--r-- | ChangeLog | 10 | ||||
| -rw-r--r-- | etc.c | 4 | ||||
| -rw-r--r-- | file.c | 4 | ||||
| -rw-r--r-- | main.c | 4 | 
4 files changed, 18 insertions, 4 deletions
| @@ -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 @@ -1548,4 +1556,4 @@  	* release-0-2-1  	* import w3m-0.2.1 -$Id: ChangeLog,v 1.173 2001/12/25 16:19:28 ukai Exp $ +$Id: ChangeLog,v 1.174 2001/12/25 16:49:42 ukai Exp $ @@ -1,4 +1,4 @@ -/* $Id: etc.c,v 1.13 2001/12/25 16:11:07 ukai Exp $ */ +/* $Id: etc.c,v 1.14 2001/12/25 16:49:42 ukai Exp $ */  #include "fm.h"  #include <pwd.h>  #include "myctype.h" @@ -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__ @@ -1,10 +1,12 @@ -/* $Id: file.c,v 1.32 2001/12/10 17:02:44 ukai Exp $ */ +/* $Id: file.c,v 1.33 2001/12/25 16:49:42 ukai Exp $ */  #include "fm.h"  #include <sys/types.h>  #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> @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.47 2001/12/25 13:43:51 ukai Exp $ */ +/* $Id: main.c,v 1.48 2001/12/25 16:49:42 ukai Exp $ */  #define MAINPROGRAM  #include "fm.h"  #include <signal.h> @@ -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" | 
