summaryrefslogtreecommitdiff
path: root/signal.c
blob: 050534a1711ce28df09e7afc34a50fa024e7ab10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <signal.h>
#include "test.h"

static sig_atomic_t sig_atomic;

static int signals[] = {
	SIGABRT,
	SIGFPE,
	SIGILL,
	SIGINT,
	SIGSEGV,
	SIGTERM,
};

void test_signal_h(void)
{
	testing_header("signal.h");

	test_distinct(signals);

	testing_end();
}