signal.h 205 B

1234567891011121314151617
  1. #ifndef __GBLIBC_SIGNAL_H_
  2. #define __GBLIBC_SIGNAL_H_
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define SIGINT 2
  7. #define SIGQUIT 3
  8. #define SIGPIPE 13
  9. #define SIGSTOP 19
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif