2011-12-08 06:59:08 +04:00
|
|
|
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SIGNAL_H
|
|
|
|
#define SIGNAL_H
|
|
|
|
|
2013-05-06 02:00:24 +04:00
|
|
|
#include <types.h>
|
2013-06-06 10:10:36 +04:00
|
|
|
void return_from_signal_handler(void);
|
|
|
|
void fix_signal_stacks(void);
|
2011-12-08 06:59:08 +04:00
|
|
|
|
2013-05-06 02:00:24 +04:00
|
|
|
#include <signal_defs.h>
|
2011-12-08 06:59:08 +04:00
|
|
|
|
|
|
|
#endif
|