diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2020-05-08 14:15:12 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2020-05-08 14:15:12 +0000 |
commit | 237631da0a703c316385f75f2601afc51a73a735 (patch) | |
tree | 7f4225532c8814380ccd8f059449efcc8b2995b9 /usr.bin | |
parent | b62603557da87a78cfa179908ea5ab3053ee0ca2 (diff) |
imsg.h needs uio.h, pointed out by deraadt
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/client.c | 3 | ||||
-rw-r--r-- | usr.bin/tmux/file.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/tmux/client.c b/usr.bin/tmux/client.c index 014ba7130a1..5565e78db8d 100644 --- a/usr.bin/tmux/client.c +++ b/usr.bin/tmux/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.143 2020/04/27 08:35:09 nicm Exp $ */ +/* $OpenBSD: client.c,v 1.144 2020/05/08 14:15:11 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -18,6 +18,7 @@ #include <sys/types.h> #include <sys/socket.h> +#include <sys/uio.h> #include <sys/un.h> #include <sys/wait.h> diff --git a/usr.bin/tmux/file.c b/usr.bin/tmux/file.c index e1079a5fa62..90eeea8ace5 100644 --- a/usr.bin/tmux/file.c +++ b/usr.bin/tmux/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.5 2019/12/16 16:39:03 nicm Exp $ */ +/* $OpenBSD: file.c,v 1.6 2020/05/08 14:15:11 nicm Exp $ */ /* * Copyright (c) 2019 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -18,6 +18,7 @@ #include <sys/types.h> #include <sys/queue.h> +#include <sys/uio.h> #include <errno.h> #include <fcntl.h> |