* Moved lcc and q3asm into code/tools
This commit is contained in:
parent
b1cef6352e
commit
ad118b9baf
452 changed files with 0 additions and 0 deletions
20
code/tools/lcc/include/sparc/solaris/signal.h
Normal file
20
code/tools/lcc/include/sparc/solaris/signal.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
#ifndef __SIGNAL
|
||||
#define __SIGNAL
|
||||
|
||||
typedef int sig_atomic_t;
|
||||
|
||||
#define SIG_DFL ((void (*)(int))0)
|
||||
#define SIG_ERR ((void (*)(int))-1)
|
||||
#define SIG_IGN ((void (*)(int))1)
|
||||
|
||||
#define SIGABRT 6
|
||||
#define SIGFPE 8
|
||||
#define SIGILL 4
|
||||
#define SIGINT 2
|
||||
#define SIGSEGV 11
|
||||
#define SIGTERM 15
|
||||
|
||||
void (*signal(int, void (*)(int)))(int);
|
||||
int raise(int);
|
||||
|
||||
#endif /* __SIGNAL */
|
Loading…
Add table
Add a link
Reference in a new issue