1  /*
2  Test that the constants below are supported.
3  */
4
5#include <signal.h>
6
7int dummy1 = SA_NOCLDSTOP;
8int dummy2 = SIG_BLOCK;
9int dummy3 = SIG_UNBLOCK;
10int dummy4 = SIG_SETMASK;
11int dummy5 = SA_ONSTACK;
12int dummy6 = SA_RESETHAND;
13int dummy7 = SA_RESTART;
14int dummy8 = SA_SIGINFO;
15int dummy9 = SA_NOCLDWAIT;
16int dummy10 = SA_NODEFER;
17int dummy11 = SS_ONSTACK;
18int dummy12 = SS_DISABLE;
19int dummy13 = MINSIGSTKSZ;
20int dummy14 = SIGSTKSZ;
21