summaryrefslogtreecommitdiff
path: root/ucspi-tcp-0.88/sig.c
diff options
context:
space:
mode:
Diffstat (limited to 'ucspi-tcp-0.88/sig.c')
-rw-r--r--ucspi-tcp-0.88/sig.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/ucspi-tcp-0.88/sig.c b/ucspi-tcp-0.88/sig.c
new file mode 100644
index 0000000..0368bcc
--- /dev/null
+++ b/ucspi-tcp-0.88/sig.c
@@ -0,0 +1,12 @@
+#include <signal.h>
+#include "sig.h"
+
+int sig_alarm = SIGALRM;
+int sig_child = SIGCHLD;
+int sig_cont = SIGCONT;
+int sig_hangup = SIGHUP;
+int sig_pipe = SIGPIPE;
+int sig_term = SIGTERM;
+
+void (*sig_defaulthandler)() = SIG_DFL;
+void (*sig_ignorehandler)() = SIG_IGN;