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/tmux/file.c | |
parent | b62603557da87a78cfa179908ea5ab3053ee0ca2 (diff) |
imsg.h needs uio.h, pointed out by deraadt
Diffstat (limited to 'usr.bin/tmux/file.c')
-rw-r--r-- | usr.bin/tmux/file.c | 3 |
1 files changed, 2 insertions, 1 deletions
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> |