1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/BBA1.5_platform/apps/public/strace-4.16/nsig.h
2024-07-22 01:58:46 -03: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 */