1 2 3 4 5 6 7 8 9 10 11
#ifndef SIGNALS_H #define SIGNALS_H #include <signal.h> extern volatile sig_atomic_t resized; void set_signal_handlers(void); void handle_sigwinch(int signum); #endif