aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorDave Love2002-05-17 17:10:07 +0000
committerDave Love2002-05-17 17:10:07 +0000
commite76af44234e28d849d6ce4125b9ccf60578ac8e9 (patch)
tree9d136d1b95b73127443b226e842bd6d95777a667 /src/process.c
parentf55d2710b3a2b63af2d90c6f14b532a3d4ce3999 (diff)
downloademacs-e76af44234e28d849d6ce4125b9ccf60578ac8e9.tar.gz
emacs-e76af44234e28d849d6ce4125b9ccf60578ac8e9.zip
*** empty log message ***
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c
index 4b009e2b076..5ca96d83e9c 100644
--- a/src/process.c
+++ b/src/process.c
@@ -92,6 +92,10 @@ Boston, MA 02111-1307, USA. */
92#include <sys/sysmacros.h> /* for "minor" */ 92#include <sys/sysmacros.h> /* for "minor" */
93#endif /* not IRIS */ 93#endif /* not IRIS */
94 94
95#ifdef HAVE_SYS_WAIT
96#include <sys/wait.h>
97#endif
98
95#include "systime.h" 99#include "systime.h"
96#include "systty.h" 100#include "systty.h"
97 101
@@ -234,6 +238,9 @@ static int pty_max_bytes;
234extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system; 238extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system;
235 239
236#ifdef HAVE_PTYS 240#ifdef HAVE_PTYS
241#ifdef HAVE_PTY_H
242#include <pty.h>
243#endif
237/* The file name of the pty opened by allocate_pty. */ 244/* The file name of the pty opened by allocate_pty. */
238 245
239static char pty_name[24]; 246static char pty_name[24];