From: Alan Cox Date: Sun, 25 Jan 2015 15:46:56 +0000 (+0000) Subject: SIG_DFL: note must be zero, ready for execve tidy X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=f286c120cd61910c221ac66e286b2c190c0387b5;p=FUZIX.git SIG_DFL: note must be zero, ready for execve tidy --- diff --git a/Kernel/include/kernel.h b/Kernel/include/kernel.h index 054cf7e3..6412f951 100644 --- a/Kernel/include/kernel.h +++ b/Kernel/include/kernel.h @@ -292,7 +292,7 @@ struct mount { #define SIGSYS 31 #define SIGUNUSED 31 -#define SIG_DFL (int16_t (*)())0 +#define SIG_DFL (int16_t (*)())0 /* Must be 0 */ #define SIG_IGN (int16_t (*)())1 #define sigmask(sig) (1UL<<(sig))