Changed type to int
This commit is contained in:
parent
0b5810d83a
commit
2997281247
1 changed files with 4 additions and 4 deletions
|
@ -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…
Add table
Reference in a new issue