diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-09-01 15:54:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-09-01 15:54:41 +0000 |
commit | 06868d6000b229c4a28dc912c1e84a79856d1021 (patch) | |
tree | 17e214f917fcd7a75f7ffe0ec7c020b69caeda09 /usr.bin/pkill | |
parent | 1208a6402b65947fcef0b6aabfe3ed14bcfd0f3a (diff) |
A couple commands don't need sys/param.h, but they do need sys/signal.h
Diffstat (limited to 'usr.bin/pkill')
-rw-r--r-- | usr.bin/pkill/pkill.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/pkill/pkill.c b/usr.bin/pkill/pkill.c index 8dc98cc482d..c9ed8cc9e3b 100644 --- a/usr.bin/pkill/pkill.c +++ b/usr.bin/pkill/pkill.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pkill.c,v 1.42 2019/12/16 19:21:17 guenther Exp $ */ +/* $OpenBSD: pkill.c,v 1.43 2021/09/01 15:54:40 deraadt Exp $ */ /* $NetBSD: pkill.c,v 1.5 2002/10/27 11:49:34 kleink Exp $ */ /*- @@ -30,9 +30,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include <sys/param.h> /* MAXCOMLEN */ #include <sys/types.h> #include <sys/sysctl.h> +#include <sys/signal.h> #include <sys/proc.h> #include <sys/queue.h> #include <sys/stat.h> |