diff options
author | Omar Polo <op@omarpolo.com> | 2023-06-08 19:41:00 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-06-08 19:41:00 +0000 |
commit | 9b89eaeb5538f66a11a7fb0e16cc20dc07d49fe1 (patch) | |
tree | b71ce7cb1ec0b4cdc897b196fec0b14dfd50653a /proc.c | |
parent | 9b2587bb33052c4564987990d281c9f8c25c7024 (diff) |
fix build of proc.c on !OpenBSD
Diffstat (limited to 'proc.c')
-rw-r--r-- | proc.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -17,9 +17,11 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "gmid.h" + #include <sys/types.h> -#include <sys/queue.h> -#include <sys/tree.h> +/* #include <sys/queue.h> XXX provided by gmid.h */ +/* #include <sys/tree.h> XXX provided by gmid.h */ #include <sys/socket.h> #include <sys/wait.h> @@ -34,10 +36,9 @@ #include <signal.h> #include <paths.h> #include <pwd.h> -#include <event.h> -#include <imsg.h> +/* #include <event.h> XXX provided by gmid.h */ +/* #include <imsg.h> XXX provided by gmid.h */ -#include "gmid.h" #include "log.h" #include "proc.h" |