diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2013-11-17 20:19:37 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2013-11-17 20:19:37 +0000 |
commit | 84deb05d61b5c1d9fbf912846d328fc497f52b65 (patch) | |
tree | d071bb5c3fb1fc26857ebbf5a005af0c0a226383 /usr.bin/tmux | |
parent | 0bb25668abf5783e65149a7cbdb640b5eb657102 (diff) |
Include unistd.h as it is the standard location for getopt().
OK millert@
Diffstat (limited to 'usr.bin/tmux')
-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" |