Files
Android11/external/strace/nsig.h
2023-10-13 14:01:41 +00:00

16 lines
238 B
C

#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 */