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