summaryrefslogtreecommitdiff
path: root/src/libstddjb/sig.c
blob: 334b79a06c830b735205c50182c11966f9c9c138 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ISC license. */

#include <signal.h>
#include <skalibs/sig.h>

int sig_alarm = SIGALRM ;
int sig_child = SIGCHLD ;
int sig_stop = SIGSTOP ;
int sig_cont = SIGCONT ;
int sig_hangup = SIGHUP ;
int sig_int = SIGINT ;
int sig_kill = SIGKILL ;
int sig_pipe = SIGPIPE ;
int sig_term = SIGTERM ;
int sig_usr1 = SIGUSR1 ;
int sig_usr2 = SIGUSR2 ;
int sig_quit = SIGQUIT ;
int sig_abort = SIGABRT ;