Mercurial > emacs
diff src/process.c @ 88554:0358964d3d98
*** empty log message ***
| author | Dave Love <fx@gnu.org> |
|---|---|
| date | Fri, 17 May 2002 17:10:07 +0000 |
| parents | c60e206fcf58 |
| children | 3e4c75be8383 |
line wrap: on
line diff
--- a/src/process.c Fri May 17 17:00:15 2002 +0000 +++ b/src/process.c Fri May 17 17:10:07 2002 +0000 @@ -92,6 +92,10 @@ #include <sys/sysmacros.h> /* for "minor" */ #endif /* not IRIS */ +#ifdef HAVE_SYS_WAIT +#include <sys/wait.h> +#endif + #include "systime.h" #include "systty.h" @@ -234,6 +238,9 @@ extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system; #ifdef HAVE_PTYS +#ifdef HAVE_PTY_H +#include <pty.h> +#endif /* The file name of the pty opened by allocate_pty. */ static char pty_name[24];
