#ifndef SIGNAL__SIGNAL_H #define SIGNAL__SIGNAL_H #include #define NSIGNALS 256 typedef void (*handler)(int); extern struct __signal { int current; handler handlers[NSIGNALS]; } ___signal; void __signal_handler(int); /* STDC(-1) */ #endif