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 /file.c | |
parent | [w3m-dev 02725] bcopy, bzero (diff) | |
download | w3m-501827a1048aef1f43f3fc92213ae3a064e6ef34.tar.gz w3m-501827a1048aef1f43f3fc92213ae3a064e6ef34.zip |
[#496610] #include <sys/wait.h>
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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> |