aboutsummaryrefslogtreecommitdiff
path: root/signal.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2016-10-12 09:45:49 +0100
committerThomas Adam <thomas@xteddy.org>2016-10-12 09:45:49 +0100
commitb9dc855016cf79c8bb8469c272dbc6bca24deadc (patch)
treea2049bea7b17ededbd12b77110d47353ed832e46 /signal.c
parent27126f87976c63161fcae2ab1eb9c6df726a84ff (diff)
parent5c49e1d0c1afaf98512b2ffd1f31d91fecff9851 (diff)
downloadrtmux-b9dc855016cf79c8bb8469c272dbc6bca24deadc.tar.gz
rtmux-b9dc855016cf79c8bb8469c272dbc6bca24deadc.tar.bz2
rtmux-b9dc855016cf79c8bb8469c272dbc6bca24deadc.zip
Merge branch 'obsd-master'
Conflicts: format.c osdep-openbsd.c
Diffstat (limited to 'signal.c')
-rw-r--r--signal.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/signal.c b/signal.c
index 19938638..79d23af0 100644
--- a/signal.c
+++ b/signal.c
@@ -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)