diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2022-02-20 00:09:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2022-02-20 00:09:31 +0000 |
commit | fc1fe33388f13a6a46e1df8c9c56eace0104a040 (patch) | |
tree | c361a6dce3067551b5b4baa8c9dbdf4a35eb0e1c /usr.sbin/pstat | |
parent | dcec42031b30f3a84a4f8a5670ea67487e141043 (diff) |
sys/proc.h requires sys/signal.h (will become visible when sys/param.h
is removed)
Diffstat (limited to 'usr.sbin/pstat')
-rw-r--r-- | usr.sbin/pstat/pstat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index f618409f2a4..3a4c09e4298 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pstat.c,v 1.127 2021/11/15 15:14:24 millert Exp $ */ +/* $OpenBSD: pstat.c,v 1.128 2022/02/20 00:09:30 deraadt Exp $ */ /* $NetBSD: pstat.c,v 1.27 1996/10/23 22:50:06 cgd Exp $ */ /*- @@ -32,6 +32,7 @@ #include <sys/param.h> /* MAXCOMLEN DEV_BSIZE */ #include <sys/types.h> +#include <sys/signal.h> #include <sys/proc.h> #include <sys/time.h> #include <sys/vnode.h> |