debian/rules: Use `git' potty wrapper.
[qmail] / sig_term.c
1 #include <signal.h>
2 #include "sig.h"
3
4 void sig_termblock() { sig_block(SIGTERM); }
5 void sig_termunblock() { sig_unblock(SIGTERM); }
6 void sig_termcatch(f) void (*f)(); { sig_catch(SIGTERM,f); }
7 void sig_termdefault() { sig_catch(SIGTERM,SIG_DFL); }