aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-01-09 23:57:42 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-01-09 23:57:42 +0000
commit3ed5aa3e72bf0e720f1ea35159a1d15b1f02e0ff (patch)
treed6d9dc50461b010cd9da225afacf9d4081d29bc6 /tmux.c
parente13445875451d66fcc8b0d8b4995321560d03b80 (diff)
downloadrtmux-3ed5aa3e72bf0e720f1ea35159a1d15b1f02e0ff.tar.gz
rtmux-3ed5aa3e72bf0e720f1ea35159a1d15b1f02e0ff.tar.bz2
rtmux-3ed5aa3e72bf0e720f1ea35159a1d15b1f02e0ff.zip
Build array of codes, stop using ncurses global variables and push ncurses crap into tty-term.c.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index f83fdb2f..ac5a5b89 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.85 2009-01-09 16:45:58 nicm Exp $ */
+/* $Id: tmux.c,v 1.86 2009-01-09 23:57:42 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -52,6 +52,7 @@ struct options global_window_options;
int debug_level;
int be_quiet;
+time_t start_time;
void sighandler(int);
__dead void usage(void);