From: ceriel Date: Mon, 14 Oct 1991 08:56:56 +0000 (+0000) Subject: Changed type to int X-Git-Tag: release-5-5~747 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=2997281247c68467c4b8385ba0b0f006e5043d2e;p=ack.git Changed type to int --- diff --git a/include/_tail_cc/signal.h b/include/_tail_cc/signal.h index 49ac856bf..23bb51e7f 100644 --- a/include/_tail_cc/signal.h +++ b/include/_tail_cc/signal.h @@ -50,10 +50,10 @@ #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 */