Home | History | Annotate | Download | only in strace
      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