Updated: signal now uses a void function

This commit is contained in:
ceriel
1993-11-17 11:04:32 +00:00
parent 90134a3bea
commit 2309d12210
2 changed files with 7 additions and 7 deletions

View File

@@ -21,6 +21,6 @@
#define SIGALRM 14 /* alarm clock */
#define SIGTERM 15 /* software termination signal from kill */
int (*signal())();
#define SIG_DFL (int (*)())-2
#define SIG_IGN (int (*)())-3
void (*signal())();
#define SIG_DFL (void (*)())-2
#define SIG_IGN (void (*)())-3