scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

signal.h (605B)


      1 typedef char sig_atomic_t;
      2 
      3 #define SIG_ERR    -1
      4 #define SIG_DFL     0
      5 #define SIG_IGN     1
      6 
      7 #define SIG_ERR    -1
      8 #define SIG_DFL     0
      9 #define SIG_IGN     1
     10 
     11 #define SIGHUP      1
     12 #define SIGINT      2
     13 #define SIGQUIT     3
     14 #define SIGILL      4
     15 #define SIGABRT     6
     16 #define SIGFPE      8
     17 #define SIGKILL     9
     18 #define SIGUSR1    10
     19 #define SIGSEGV    11
     20 #define SIGUSR2    12
     21 #define SIGPIPE    13
     22 #define SIGALRM    14
     23 #define SIGTERM    15
     24 #define SIGCHLD    17
     25 #define SIGCONT    18
     26 #define SIGSTOP    19
     27 #define SIGSSTP    20
     28 #define SIGTTIN    21
     29 #define SIGTTOU    22
     30 
     31 #define __NR_SIGNALS 23