Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make PR/47973: Justin Cormack: build uses <sys/signa...



details:   https://anonhg.NetBSD.org/src/rev/1f9f25684b22
branches:  trunk
changeset: 787718:1f9f25684b22
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Jun 29 15:19:32 2013 +0000

description:
PR/47973: Justin Cormack: build uses <sys/signal.h> not in POSIX

diffstat:

 usr.bin/make/main.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (42 lines):

diff -r a1e8ff4e2c45 -r 1f9f25684b22 usr.bin/make/main.c
--- a/usr.bin/make/main.c       Sat Jun 29 12:22:48 2013 +0000
+++ b/usr.bin/make/main.c       Sat Jun 29 15:19:32 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: main.c,v 1.214 2013/06/18 20:06:09 sjg Exp $   */
+/*     $NetBSD: main.c,v 1.215 2013/06/29 15:19:32 christos Exp $      */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -69,7 +69,7 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: main.c,v 1.214 2013/06/18 20:06:09 sjg Exp $";
+static char rcsid[] = "$NetBSD: main.c,v 1.215 2013/06/29 15:19:32 christos Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
@@ -81,7 +81,7 @@
 #if 0
 static char sccsid[] = "@(#)main.c     8.3 (Berkeley) 3/19/94";
 #else
-__RCSID("$NetBSD: main.c,v 1.214 2013/06/18 20:06:09 sjg Exp $");
+__RCSID("$NetBSD: main.c,v 1.215 2013/06/29 15:19:32 christos Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -117,13 +117,13 @@
 #include <sys/time.h>
 #include <sys/param.h>
 #include <sys/resource.h>
-#include <sys/signal.h>
 #include <sys/stat.h>
 #include <sys/utsname.h>
 #include <sys/wait.h>
 
 #include <errno.h>
 #include <fcntl.h>
+#include <signal.h>
 #include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>



Home | Main Index | Thread Index | Old Index