diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-12-07 00:40:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-12-07 00:40:04 +0000 |
commit | feaea13e9b89c8f232384c72e9d8368e2486d087 (patch) | |
tree | 36effb7593de9821340feec0c371ce69d1381561 /usr.bin | |
parent | 4898f7b3e0d8e7153d5ac55ca0989f99800c94d2 (diff) |
sys/signal.h (or some master include) must happen before sys/proc.h, which
is not standalone.
This problem is being hidden by a sys/param.h which cannot be deleted yet.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/procname.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/procname.c b/usr.bin/tmux/procname.c index 2ee1aa4b177..8871abfc74c 100644 --- a/usr.bin/tmux/procname.c +++ b/usr.bin/tmux/procname.c @@ -1,4 +1,4 @@ -/* $OpenBSD: procname.c,v 1.18 2021/12/07 00:38:42 deraadt Exp $ */ +/* $OpenBSD: procname.c,v 1.19 2021/12/07 00:40:03 deraadt Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -18,6 +18,7 @@ #include <sys/param.h> /* MAXCOMLEN */ #include <sys/types.h> +#include <sys/signal.h> #include <sys/proc.h> #include <sys/sysctl.h> #include <sys/stat.h> |