1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*\
||| This file a part of uLPC, and is copyright by Fredrik Hubinette
||| uLPC is distributed as GPL (General Public License)
||| See the files COPYING and DISCLAIMER for more information.
\*/
#ifndef SIGNAL_H
#define SIGNAL_H
/* Prototypes begin here */
struct sigdesc;
void check_signals();
void init_signals();
void exit_signals();
/* Prototypes end here */
#endif