#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