diff options
author | Gerrit Pape <pape@smarden.org> | 2007-09-19 12:40:23 +0000 |
---|---|---|
committer | Gerrit Pape <pape@smarden.org> | 2007-09-21 08:09:49 +0000 |
commit | e459e698fb3decc04e7294a3e33ad0c55d316b8f (patch) | |
tree | 2f910e5bdf5655f4991cbf897999b84c8039e30a /src/sig.c | |
parent | 0dd201c4461ad7b2e613419cf4129e01102d809a (diff) | |
download | runit-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.c | 15 |
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; |