URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [lcc/] [include/] [mips/] [irix/] [signal.h] - Rev 302
Go to most recent revision | Compare with Previous | Blame | View Log
#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 */
Go to most recent revision | Compare with Previous | Blame | View Log