summaryrefslogtreecommitdiffstats
path: root/trysgact.c
diff options
context:
space:
mode:
Diffstat (limited to 'trysgact.c')
-rw-r--r--trysgact.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/trysgact.c b/trysgact.c
new file mode 100644
index 0000000..263cb21
--- /dev/null
+++ b/trysgact.c
@@ -0,0 +1,10 @@
1#include <signal.h>
2
3void 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}