scc

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

signal.h (537B)


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