comparison src/process.c @ 48088:9618c046ce89

Include sys/wait.h. [HAVE_PTY_H]; Include pty.h.
author Dave Love <fx@gnu.org>
date Wed, 30 Oct 2002 19:16:32 +0000
parents f840e449c328
children 21d7f2c18976
comparison
equal deleted inserted replaced
48087:cae822515e00 48088:9618c046ce89
100 #endif 100 #endif
101 101
102 #ifdef IRIS 102 #ifdef IRIS
103 #include <sys/sysmacros.h> /* for "minor" */ 103 #include <sys/sysmacros.h> /* for "minor" */
104 #endif /* not IRIS */ 104 #endif /* not IRIS */
105
106 #ifdef HAVE_SYS_WAIT
107 #include <sys/wait.h>
108 #endif
105 109
106 #include "systime.h" 110 #include "systime.h"
107 #include "systty.h" 111 #include "systty.h"
108 112
109 #include "lisp.h" 113 #include "lisp.h"
328 static int pty_max_bytes; 332 static int pty_max_bytes;
329 333
330 extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system; 334 extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system;
331 335
332 #ifdef HAVE_PTYS 336 #ifdef HAVE_PTYS
337 #ifdef HAVE_PTY_H
338 #include <pty.h>
339 #endif
333 /* The file name of the pty opened by allocate_pty. */ 340 /* The file name of the pty opened by allocate_pty. */
334 341
335 static char pty_name[24]; 342 static char pty_name[24];
336 #endif 343 #endif
337 344