Changed type to int
authorceriel <none@none>
Mon, 14 Oct 1991 08:56:56 +0000 (08:56 +0000)
committerceriel <none@none>
Mon, 14 Oct 1991 08:56:56 +0000 (08:56 +0000)
include/_tail_cc/signal.h

index 49ac856..23bb51e 100644 (file)
 #endif
 
 
-#define SIG_DFL                ((void (*)())0)         /* default signal handling */
-#define SIG_IGN                ((void (*)())1)         /* ignore signal */
-#define SIG_ERR                ((void (*)())-1)
+#define SIG_DFL                ((int (*)())0)          /* default signal handling */
+#define SIG_IGN                ((int (*)())1)          /* ignore signal */
+#define SIG_ERR                ((int (*)())-1)
 
-void (*signal()) ();
+int (*signal()) ();
 
 #endif /* _SIGNAL_H */