You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
414 B
21 lines
414 B
/*************
|
|
* Header file for signal_handler.c
|
|
* 1999 E. Rouat
|
|
* $Id$
|
|
************/
|
|
|
|
#ifndef SIGNAL_HANDLER_H_INCLUDED
|
|
#define SIGNAL_HANDLER_H_INCLUDED
|
|
|
|
RETSIGTYPE ft_sigintr(void);
|
|
RETSIGTYPE sigfloat(int sig, int code);
|
|
RETSIGTYPE sigstop(void);
|
|
RETSIGTYPE sigcont(void);
|
|
RETSIGTYPE sigill(void);
|
|
RETSIGTYPE sigbus(void);
|
|
RETSIGTYPE sigsegv(void);
|
|
RETSIGTYPE sig_sys(void);
|
|
|
|
extern JMP_BUF jbuf;
|
|
|
|
#endif
|