|
|
1.1 root 1: #ifndef __SIGNAL
2: #define __SIGNAL
3:
4: typedef int sig_atomic_t;
5:
6: #define SIG_DFL ((void (*)(int))0)
7: #define SIG_ERR ((void (*)(int))-1)
8: #define SIG_IGN ((void (*)(int))1)
9:
10: #define SIGABRT 6
11: #define SIGFPE 8
12: #define SIGILL 4
13: #define SIGINT 2
14: #define SIGSEGV 11
15: #define SIGTERM 15
16:
17: void (*signal(int, void (*)(int)))(int);
18: int raise(int);
19:
20: #endif /* __SIGNAL */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.