diff src/process-unix.c @ 854:1d8fb2eee1bb

[xemacs-hg @ 2002-05-28 16:06:58 by didierv] Fix header inclusion order
author didierv
date Tue, 28 May 2002 16:07:03 +0000
parents 2b6fa2618f76
children 211050afdc9a
line wrap: on
line diff
--- a/src/process-unix.c	Tue May 28 08:45:36 2002 +0000
+++ b/src/process-unix.c	Tue May 28 16:07:03 2002 +0000
@@ -53,9 +53,10 @@
 #include <setjmp.h>
 #include "sysdir.h"
 #include "sysfile.h"
+#include "syssignal.h" /* Always include before systty.h and sysproc.h
+			  -- didier*/
 #include "sysproc.h"
 #include "systime.h"
-#include "syssignal.h" /* Always include before systty.h */
 #include "systty.h"
 #include "syswait.h"
 
@@ -1106,13 +1107,13 @@
   if (separate_err)
     {
       int sv[2];
-      
+
       if (pipe (sv) < 0)
 	goto io_failure;
       forkerr = sv[1];
       errchannel = sv[0];
     }
-      
+
 #if 0
   /* Replaced by close_process_descs */
   set_exclusive_use (inchannel);
@@ -2047,7 +2048,7 @@
 		   at this point so we can use `sleep'.
 
 		   (Again, this was not conditionalized on FreeBSD.
-		   Let's not mess up systems without the problem. --ben) 
+		   Let's not mess up systems without the problem. --ben)
 		*/
 		sleep (1);
 #endif