summaryrefslogtreecommitdiff
path: root/userland/libc/include/signal.h
blob: 2e6566da38349ae896ab9731c6f79f9a9f1be631 (plain)
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