chiark
/
gitweb
/
~mdw
/
qmail
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
qmail-send: Add message-id to bounce messages.
[qmail]
/
trysgact.c
1
#include <signal.h>
2
3
void main()
4
{
5
struct sigaction sa;
6
sa.sa_handler = 0;
7
sa.sa_flags = 0;
8
sigemptyset(&sa.sa_mask);
9
sigaction(0,&sa,(struct sigaction *) 0);
10
}