diff options
author | deraadt <deraadt> | 2021-12-07 00:40:03 +0000 |
---|---|---|
committer | deraadt <deraadt> | 2021-12-07 00:40:03 +0000 |
commit | 7532a5cf9574f8c5e102383329477e934992d2ea (patch) | |
tree | 4f684c241e84a2a79b5e678c91ebd5182c32f1f3 /procname.c | |
parent | 71c3234dc78f6f59a66757a6e272e77823a820b3 (diff) | |
download | rtmux-7532a5cf9574f8c5e102383329477e934992d2ea.tar.gz rtmux-7532a5cf9574f8c5e102383329477e934992d2ea.tar.bz2 rtmux-7532a5cf9574f8c5e102383329477e934992d2ea.zip |
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 'procname.c')
-rw-r--r-- | procname.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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> |