diff options
author | dzwdz | 2022-08-28 23:54:47 +0200 |
---|---|---|
committer | dzwdz | 2022-08-28 23:54:47 +0200 |
commit | edb7fc07bf93e4a1883cccf45ad7a4b2cbf390d9 (patch) | |
tree | 1df1e95e52d54d538d345cbf455bed096d9a1bb0 /src/user/lib/include/signal.h | |
parent | f2eb3a78c7b69c4b8e118d91327cc5c1016481fc (diff) |
user/lua: prepare libc headers
Diffstat (limited to 'src/user/lib/include/signal.h')
-rw-r--r-- | src/user/lib/include/signal.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/user/lib/include/signal.h b/src/user/lib/include/signal.h index c279beb..b6e9677 100644 --- a/src/user/lib/include/signal.h +++ b/src/user/lib/include/signal.h @@ -3,10 +3,11 @@ #define SIGHUP 0 #define SIGINT 0 -#define SIGWINCH 0 #define SIGQUIT 0 -#define SIG_IGN 0 +#define SIGWINCH 0 +#define SIG_DFL 0 #define SIG_ERR 0 +#define SIG_IGN 0 typedef int sig_atomic_t; |