1 2 3 4 5 6 7 8 9
#ifndef SIGNAL_H #define SIGNAL_H #define SIGHUP 0 #define SIGINT 1 #define SIGWINCH 2 #define SIGQUIT 3 #define SIG_IGN 4 typedef int sig_atomic_t; #endif // SIGNAL_H