diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2016-10-11 13:45:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2016-10-11 13:45:48 +0000 |
commit | 9502f557c388aa30d29a7f82f0f50342a6f858af (patch) | |
tree | f71b8e36ce2ed9a82353c996cb088bb614e7bd6a /usr.bin/tmux/cfg.c | |
parent | 7b83048a3c6235e9f4996ad7cf1736535660de8d (diff) |
Some other stuff that can be local to one file.
Diffstat (limited to 'usr.bin/tmux/cfg.c')
-rw-r--r-- | usr.bin/tmux/cfg.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/tmux/cfg.c b/usr.bin/tmux/cfg.c index 5c37f095512..4ccbf6d4d5e 100644 --- a/usr.bin/tmux/cfg.c +++ b/usr.bin/tmux/cfg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cfg.c,v 1.46 2016/10/10 21:29:23 nicm Exp $ */ +/* $OpenBSD: cfg.c,v 1.47 2016/10/11 13:45:47 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -28,13 +28,13 @@ #include "tmux.h" -char *cfg_file; -struct cmd_q *cfg_cmd_q; -int cfg_finished; -int cfg_references; -char **cfg_causes; -u_int cfg_ncauses; -struct client *cfg_client; +char *cfg_file; +static struct cmd_q *cfg_cmd_q; +int cfg_finished; +int cfg_references; +static char **cfg_causes; +static u_int cfg_ncauses; +struct client *cfg_client; static void cfg_default_done(struct cmd_q *); |