diff options
author | 2013-11-17 20:19:36 +0000 | |
---|---|---|
committer | 2013-11-17 20:19:36 +0000 | |
commit | 31e6af9066f6c2cb205434f6d159ddf6dbea3b44 (patch) | |
tree | 35af0d4e0730e3b5007aac4e24c533747f13b5cb /usr.bin/tmux/arguments.c | |
parent | Adapt the IPv6 routing header type 0 tests to the current behaviour. (diff) | |
download | wireguard-openbsd-31e6af9066f6c2cb205434f6d159ddf6dbea3b44.tar.xz wireguard-openbsd-31e6af9066f6c2cb205434f6d159ddf6dbea3b44.zip |
Include unistd.h as it is the standard location for getopt().
OK millert@
Diffstat (limited to 'usr.bin/tmux/arguments.c')
-rw-r--r-- | usr.bin/tmux/arguments.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/arguments.c b/usr.bin/tmux/arguments.c index 4a90ad877b0..37c23dee824 100644 --- a/usr.bin/tmux/arguments.c +++ b/usr.bin/tmux/arguments.c @@ -1,4 +1,4 @@ -/* $OpenBSD: arguments.c,v 1.5 2013/05/31 12:19:34 nicm Exp $ */ +/* $OpenBSD: arguments.c,v 1.6 2013/11/17 20:19:36 okan Exp $ */ /* * Copyright (c) 2010 Nicholas Marriott <nicm@users.sourceforge.net> @@ -20,6 +20,7 @@ #include <stdlib.h> #include <string.h> +#include <unistd.h> #include "tmux.h" |