From b12f42cfe2a611cbccea63519fd4de630f220219 Mon Sep 17 00:00:00 2001 From: apio Date: Mon, 24 Jul 2023 19:11:06 +0200 Subject: [PATCH] libc: Add SIGWINCH Not used for anything at the moment, I guess if a user program wants to send it... Required by bc. --- libc/include/bits/signal.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libc/include/bits/signal.h b/libc/include/bits/signal.h index 16a0441e..b1803235 100644 --- a/libc/include/bits/signal.h +++ b/libc/include/bits/signal.h @@ -49,8 +49,9 @@ enum __signals SIGPIPE = 13, SIGALRM = 14, SIGTERM = 15, - SIGTTIN = 16, - SIGTTOU = 17, + SIGTTIN, + SIGTTOU, + SIGWINCH, // FIXME: Add the remaining signals. __NSIG, };