summaryrefslogtreecommitdiff
path: root/signal.c
diff options
context:
space:
mode:
Diffstat (limited to 'signal.c')
-rw-r--r--signal.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/signal.c b/signal.c
index 13aa074..050534a 100644
--- a/signal.c
+++ b/signal.c
@@ -1,7 +1,16 @@
#include <signal.h>
#include "test.h"
-#include "signal.d"
+static sig_atomic_t sig_atomic;
+
+static int signals[] = {
+ SIGABRT,
+ SIGFPE,
+ SIGILL,
+ SIGINT,
+ SIGSEGV,
+ SIGTERM,
+};
void test_signal_h(void)
{