1 /* Public domain. */
2 
3 #include <signal.h>
4 #include "sig.h"
5 
6 int sig_alarm = SIGALRM;
7 int sig_child = SIGCHLD;
8 int sig_cont = SIGCONT;
9 int sig_hangup = SIGHUP;
10 int sig_int = SIGINT;
11 int sig_pipe = SIGPIPE;
12 int sig_term = SIGTERM;
13 
14 void (*sig_defaulthandler)() = SIG_DFL;
15 void (*sig_ignorehandler)() = SIG_IGN;
16