debian/rules: Use `git' potty wrapper.
[qmail] / sig_child.c
1 #include <signal.h>
2 #include "sig.h"
3
4 void sig_childblock() { sig_block(SIGCHLD); }
5 void sig_childunblock() { sig_unblock(SIGCHLD); }
6 void sig_childcatch(f) void (*f)(); { sig_catch(SIGCHLD,f); }
7 void sig_childdefault() { sig_catch(SIGCHLD,SIG_DFL); }