You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
238 B
16 lines
238 B
7 months ago
|
#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 */
|