signal.h is not sys/signal.h
authorChris Torek <torek@ucbvax.Berkeley.EDU>
Sun, 27 Oct 1991 15:38:49 +0000 (07:38 -0800)
committerChris Torek <torek@ucbvax.Berkeley.EDU>
Sun, 27 Oct 1991 15:38:49 +0000 (07:38 -0800)
SCCS-vsn: usr.bin/make/compat.c 5.8
SCCS-vsn: usr.bin/make/job.c 5.17

usr/src/usr.bin/make/compat.c
usr/src/usr.bin/make/job.c

index 0ec50b0..89c8f7b 100644 (file)
@@ -11,7 +11,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)compat.c   5.7 (Berkeley) %G%";
+static char sccsid[] = "@(#)compat.c   5.8 (Berkeley) %G%";
 #endif /* not lint */
 
 /*-
 #endif /* not lint */
 
 /*-
@@ -29,9 +29,9 @@ static char sccsid[] = "@(#)compat.c  5.7 (Berkeley) %G%";
 
 #include    <stdio.h>
 #include    <sys/types.h>
 
 #include    <stdio.h>
 #include    <sys/types.h>
-#include    <sys/signal.h>
 #include    <sys/wait.h>
 #include    <sys/errno.h>
 #include    <sys/wait.h>
 #include    <sys/errno.h>
+#include    <signal.h>
 #include    <ctype.h>
 #include    "make.h"
 extern int errno;
 #include    <ctype.h>
 #include    "make.h"
 extern int errno;
index eb3e7b4..72867cb 100644 (file)
@@ -11,7 +11,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)job.c      5.16 (Berkeley) %G%";
+static char sccsid[] = "@(#)job.c      5.17 (Berkeley) %G%";
 #endif /* not lint */
 
 /*-
 #endif /* not lint */
 
 /*-
@@ -71,11 +71,11 @@ static char sccsid[] = "@(#)job.c   5.16 (Berkeley) %G%";
  */
 
 #include "make.h"
  */
 
 #include "make.h"
-#include <sys/signal.h>
 #include <sys/stat.h>
 #include <sys/file.h>
 #include <sys/time.h>
 #include <sys/wait.h>
 #include <sys/stat.h>
 #include <sys/file.h>
 #include <sys/time.h>
 #include <sys/wait.h>
+#include <signal.h>
 #include <fcntl.h>
 #include <errno.h>
 #include <stdio.h>
 #include <fcntl.h>
 #include <errno.h>
 #include <stdio.h>