Changed type to int
This commit is contained in:
parent
1219af36e7
commit
63c49b4ca9
@ -50,10 +50,10 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#define SIG_DFL ((void (*)())0) /* default signal handling */
|
#define SIG_DFL ((int (*)())0) /* default signal handling */
|
||||||
#define SIG_IGN ((void (*)())1) /* ignore signal */
|
#define SIG_IGN ((int (*)())1) /* ignore signal */
|
||||||
#define SIG_ERR ((void (*)())-1)
|
#define SIG_ERR ((int (*)())-1)
|
||||||
|
|
||||||
void (*signal()) ();
|
int (*signal()) ();
|
||||||
|
|
||||||
#endif /* _SIGNAL_H */
|
#endif /* _SIGNAL_H */
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user