Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/pkill Explicitly include sys/resource.h



details:   https://anonhg.NetBSD.org/src/rev/c3df59306912
branches:  trunk
changeset: 783640:c3df59306912
user:      dsl <dsl%NetBSD.org@localhost>
date:      Wed Jan 02 10:36:07 2013 +0000

description:
Explicitly include sys/resource.h

diffstat:

 usr.bin/pkill/pkill.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r f38a4c0a3d49 -r c3df59306912 usr.bin/pkill/pkill.c
--- a/usr.bin/pkill/pkill.c     Wed Jan 02 10:33:49 2013 +0000
+++ b/usr.bin/pkill/pkill.c     Wed Jan 02 10:36:07 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pkill.c,v 1.28 2012/11/20 22:52:01 christos Exp $      */
+/*     $NetBSD: pkill.c,v 1.29 2013/01/02 10:36:07 dsl Exp $   */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: pkill.c,v 1.28 2012/11/20 22:52:01 christos Exp $");
+__RCSID("$NetBSD: pkill.c,v 1.29 2013/01/02 10:36:07 dsl Exp $");
 #endif /* !lint */
 
 #include <sys/types.h>
@@ -39,6 +39,7 @@
 #include <sys/sysctl.h>
 #include <sys/proc.h>
 #include <sys/queue.h>
+#include <sys/resource.h>
 #include <sys/stat.h>
 
 #include <stdio.h>



Home | Main Index | Thread Index | Old Index