diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2016-10-10 21:29:24 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2016-10-10 21:29:24 +0000 |
commit | cdc48fa9a174dd3320820c9e10f6c4985a30aedf (patch) | |
tree | e81384a8ee4d7982fb991136d3097cd1e77ccf0d /usr.bin/tmux/tmux.c | |
parent | 73c685014d1cbbe0b06df8e75e471e757fc66e06 (diff) |
Loads more static, except for cmd-*.c and window-*.c.
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r-- | usr.bin/tmux/tmux.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index 6602cf08734..107a961aebd 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.170 2016/05/27 17:05:42 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.171 2016/10/10 21:29:23 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -44,10 +44,10 @@ struct hooks *global_hooks; struct timeval start_time; const char *socket_path; -__dead void usage(void); -static char *make_label(const char *); +static __dead void usage(void); +static char *make_label(const char *); -__dead void +static __dead void usage(void) { fprintf(stderr, |