1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#include <signal.h> #include "test.h" void test_signal_h(void) { sig_atomic_t sig_atomic = 0; int signals[] = { SIGABRT, SIGFPE, SIGILL, SIGINT, SIGSEGV, SIGTERM, }; (void)sig_atomic; testing_header("signal.h"); test_distinct(signals); testing_end(); }