CVSROOT: /cvs Module name: src Changes by: [email protected] 2022/09/09 18:49:47
Modified files:
sbin/init : init.c
Log message:
init(8): fix signal handler boolean type and qualifier
The variable "clang" is modified from a signal handler. Change it
from an 'int' to a 'sig_atomic_t' and mark it 'volatile', as we
recommend in signal(3).
ok millert@ kn@
