mirror of
https://github.com/id-Software/Quake-III-Arena.git
synced 2026-03-20 17:10:56 +01:00
The Quake III Arena sources as originally released under the GPL license on August 20, 2005.
This commit is contained in:
20
lcc/include/mips/irix/signal.h
Normal file
20
lcc/include/mips/irix/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 */
|
||||
Reference in New Issue
Block a user