summaryrefslogtreecommitdiff
path: root/src/signal/SIG_IGN.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/signal/SIG_IGN.c')
-rw-r--r--src/signal/SIG_IGN.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/signal/SIG_IGN.c b/src/signal/SIG_IGN.c
new file mode 100644
index 00000000..a753adc7
--- /dev/null
+++ b/src/signal/SIG_IGN.c
@@ -0,0 +1,12 @@
+#include <signal.h>
+#define SIG_IGN ((void(*)(int))-3)
+
+/** ignore signal **/
+
+/***
+can be used as the ARGUMENT(func) argument in a call to FUNCTION(signal) to
+ignore the specified signal.
+***/
+/*
+STDC(1)
+*/