More signal removals.

This commit is contained in:
David Given 2022-07-16 22:51:48 +02:00
parent fd691cfaf6
commit cf3f5bf64e

View file

@ -6,7 +6,6 @@
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <signal.h>
#include <sys/stat.h> #include <sys/stat.h>
#include "system.h" #include "system.h"
#include "object.h" #include "object.h"
@ -31,9 +30,6 @@ int main(int argc, char **argv)
{ {
int status; int status;
signal(SIGHUP, SIG_IGN);
signal(SIGINT, SIG_IGN);
signal(SIGQUIT, SIG_IGN);
if (sys_tmpnam(tname)==NULL) if (sys_tmpnam(tname)==NULL)
{ {
fprintf(stderr, "astrip: cannot create temporary filename\n"); fprintf(stderr, "astrip: cannot create temporary filename\n");