summary refs log tree commit diff
path: root/src/sig.c
blob: 423d18ede3cf9ae13f3928fd4c4aceb0c8046cfe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 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;