Module Name: src
Committed By: christos
Date: Sat Jun 29 15:19:32 UTC 2013
Modified Files:
src/usr.bin/make: main.c
Log Message:
PR/47973: Justin Cormack: build uses <sys/signal.h> not in POSIX
To generate a diff of this commit:
cvs rdiff -u -r1.214 -r1.215 src/usr.bin/make/main.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/main.c
diff -u src/usr.bin/make/main.c:1.214 src/usr.bin/make/main.c:1.215
--- src/usr.bin/make/main.c:1.214 Tue Jun 18 16:06:09 2013
+++ src/usr.bin/make/main.c Sat Jun 29 11:19:32 2013
@@ -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 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 19
#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 @@ __RCSID("$NetBSD: main.c,v 1.214 2013/06
#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>