diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-08-16 19:04:05 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-08-16 19:04:05 +0000 |
commit | 8973af82c5199f7099a6b8faf92a30b372aab80b (patch) | |
tree | 8cc4b0c216707d4d1bab74f283aec00e3dfda77b | |
parent | f415d43c3b5cb6f519b171949a6a3eeaacbf6540 (diff) | |
download | rtmux-8973af82c5199f7099a6b8faf92a30b372aab80b.tar.gz rtmux-8973af82c5199f7099a6b8faf92a30b372aab80b.tar.bz2 rtmux-8973af82c5199f7099a6b8faf92a30b372aab80b.zip |
Include unistd.h due to OpenBSD patchset 254. At least on Linux, that's where
_POSIX_VDISABLE is defined.
-rw-r--r-- | cmd-new-session.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd-new-session.c b/cmd-new-session.c index 9fe267f7..dbb7d117 100644 --- a/cmd-new-session.c +++ b/cmd-new-session.c @@ -1,4 +1,4 @@ -/* $Id: cmd-new-session.c,v 1.52 2009-08-16 18:59:12 tcunha Exp $ */ +/* $Id: cmd-new-session.c,v 1.53 2009-08-16 19:04:05 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -20,6 +20,7 @@ #include <string.h> #include <termios.h> +#include <unistd.h> #define TTYDEFCHARS #include <sys/ttydefaults.h> |