Remove SIGKILL handler from pause.c

This commit is contained in:
Lee Verberne 2017-01-19 22:50:21 +00:00
parent c706a052ef
commit 68262ad5f4

View File

@ -44,7 +44,6 @@ int main() {
.sa_flags = SA_NOCLDSTOP},
NULL) < 0)
return 3;
sigaction(SIGKILL, &(struct sigaction){.sa_handler = sigdown}, NULL);
for (;;)
pause();