signal.h 160 B

12345678910
  1. #ifndef _BITS_SIGNAL_H
  2. #define _BITS_SIGNAL_H
  3. typedef struct sigaction {
  4. void (*sa_handler)(uintptr_t);
  5. sigset_t sa_mask;
  6. uintptr_t sa_flags;
  7. };
  8. #endif