summaryrefslogtreecommitdiff
path: root/usr.bin/systat
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2022-02-20 00:09:31 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2022-02-20 00:09:31 +0000
commitfc1fe33388f13a6a46e1df8c9c56eace0104a040 (patch)
treec361a6dce3067551b5b4baa8c9dbdf4a35eb0e1c /usr.bin/systat
parentdcec42031b30f3a84a4f8a5670ea67487e141043 (diff)
sys/proc.h requires sys/signal.h (will become visible when sys/param.h
is removed)
Diffstat (limited to 'usr.bin/systat')
-rw-r--r--usr.bin/systat/vmstat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/systat/vmstat.c b/usr.bin/systat/vmstat.c
index 9c5d87734d4..ba8d1a5608f 100644
--- a/usr.bin/systat/vmstat.c
+++ b/usr.bin/systat/vmstat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmstat.c,v 1.91 2019/06/28 13:35:04 deraadt Exp $ */
+/* $OpenBSD: vmstat.c,v 1.92 2022/02/20 00:09:29 deraadt Exp $ */
/* $NetBSD: vmstat.c,v 1.5 1996/05/10 23:16:40 thorpej Exp $ */
/*-
@@ -37,6 +37,7 @@
#include <sys/param.h> /* MAXCOMLEN */
#include <sys/types.h>
#include <sys/namei.h>
+#include <sys/signal.h>
#include <sys/proc.h>
#include <sys/sched.h>
#include <sys/stat.h>