summary refs log tree commit diff
path: root/src/sig.c
diff options
context:
space:
mode:
authorGerrit Pape <pape@smarden.org>2007-09-19 12:40:23 +0000
committerGerrit Pape <pape@smarden.org>2007-09-21 08:09:49 +0000
commite459e698fb3decc04e7294a3e33ad0c55d316b8f (patch)
tree2f910e5bdf5655f4991cbf897999b84c8039e30a /src/sig.c
parent0dd201c4461ad7b2e613419cf4129e01102d809a (diff)
downloadrunit-e459e698fb3decc04e7294a3e33ad0c55d316b8f.tar.gz
runit-e459e698fb3decc04e7294a3e33ad0c55d316b8f.tar.xz
runit-e459e698fb3decc04e7294a3e33ad0c55d316b8f.zip
strip down to only contain the current upstream archive.
Diffstat (limited to 'src/sig.c')
-rw-r--r--src/sig.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/sig.c b/src/sig.c
deleted file mode 100644
index 423d18e..0000000
--- a/src/sig.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Public domain. */
-
-#include <signal.h>
-#include "sig.h"
-
-int sig_alarm = SIGALRM;
-int sig_child = SIGCHLD;
-int sig_cont = SIGCONT;
-int sig_hangup = SIGHUP;
-int sig_int = SIGINT;
-int sig_pipe = SIGPIPE;
-int sig_term = SIGTERM;
-
-void (*sig_defaulthandler)() = SIG_DFL;
-void (*sig_ignorehandler)() = SIG_IGN;