more sensible values for SIG_DFL and SIG_IGN

This commit is contained in:
ceriel 1988-03-15 16:58:43 +00:00
parent 325fcd7a0f
commit 3fda8b1d61

View File

@ -22,5 +22,5 @@
#define SIGTERM 15 /* software termination signal from kill */
int (*signal())();
#define SIG_DFL (int (*)())0
#define SIG_IGN (int (*)())1
#define SIG_DFL (int (*)())-2
#define SIG_IGN (int (*)())-3