diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-04-29 22:31:23 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-04-29 22:31:23 +0000 |
commit | 82e5a2aed86a1af93f990665f3d011697d38bb2c (patch) | |
tree | 57a563bc7bf2a86403a2b74401e690c1cbb91c35 | |
parent | 0d2e8e984854d5dc22e8eebb7a60f4f535635057 (diff) |
fcntl.h is still needed here.
-rw-r--r-- | usr.bin/tmux/client.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/client.c b/usr.bin/tmux/client.c index 1c90079819d..dda8e39b3c6 100644 --- a/usr.bin/tmux/client.c +++ b/usr.bin/tmux/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.79 2014/04/17 11:38:35 nicm Exp $ */ +/* $OpenBSD: client.c,v 1.80 2014/04/29 22:31:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -25,6 +25,7 @@ #include <errno.h> #include <event.h> +#include <fcntl.h> #include <stdlib.h> #include <string.h> #include <unistd.h> |