libc: Add SIGWINCH

Not used for anything at the moment, I guess if a user program wants to send it...

Required by bc.
This commit is contained in:
apio 2023-07-24 19:11:06 +02:00
parent c70790bf62
commit b12f42cfe2
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -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,
};