1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| #ifndef STRACE_NSIG_H
| #define STRACE_NSIG_H
|
| #include <signal.h>
|
| #ifndef NSIG
| # warning NSIG is not defined, using 32
| # define NSIG 32
| #elif NSIG < 32
| # error NSIG < 32
| #endif
|
| #define NSIG_BYTES (NSIG / 8)
|
| #endif /* !STRACE_NSIG_H */
|
|