diff options
author | 2014-04-29 22:31:22 +0000 | |
---|---|---|
committer | 2014-04-29 22:31:22 +0000 | |
commit | 6b59e893a2196e88f8a90cec7a48269a3aa22071 (patch) | |
tree | 94c679e0a886db4e2517bb93ccbf9f3df2680d87 | |
parent | Get rid of the per-softc freelist of transfer descriptors and use a (diff) | |
download | wireguard-openbsd-6b59e893a2196e88f8a90cec7a48269a3aa22071.tar.xz wireguard-openbsd-6b59e893a2196e88f8a90cec7a48269a3aa22071.zip |
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> |