diff options
author | 2016-10-10 21:29:23 +0000 | |
---|---|---|
committer | 2016-10-10 21:29:23 +0000 | |
commit | 9883b791a07beb4d0cb6aad5076fe1790df94392 (patch) | |
tree | f57a4fead4e6082c2f973c34b5b8a3d46ef3191e /usr.bin/tmux/signal.c | |
parent | The TLS error message depends on the generated fake certificate. (diff) | |
download | wireguard-openbsd-9883b791a07beb4d0cb6aad5076fe1790df94392.tar.xz wireguard-openbsd-9883b791a07beb4d0cb6aad5076fe1790df94392.zip |
Loads more static, except for cmd-*.c and window-*.c.
Diffstat (limited to 'usr.bin/tmux/signal.c')
-rw-r--r-- | usr.bin/tmux/signal.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/tmux/signal.c b/usr.bin/tmux/signal.c index 4a3840de82b..a2b79c225ce 100644 --- a/usr.bin/tmux/signal.c +++ b/usr.bin/tmux/signal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.c,v 1.9 2016/01/19 15:59:12 nicm Exp $ */ +/* $OpenBSD: signal.c,v 1.10 2016/10/10 21:29:23 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -24,12 +24,12 @@ #include "tmux.h" -struct event ev_sighup; -struct event ev_sigchld; -struct event ev_sigcont; -struct event ev_sigterm; -struct event ev_sigusr1; -struct event ev_sigwinch; +static struct event ev_sighup; +static struct event ev_sigchld; +static struct event ev_sigcont; +static struct event ev_sigterm; +static struct event ev_sigusr1; +static struct event ev_sigwinch; void set_signals(void (*handler)(int, short, void *), void *arg) |