9 lines
107 B
C
9 lines
107 B
C
|
/* signal.h: Signal management. */
|
||
|
|
||
|
#ifndef _SIGNAL_H
|
||
|
#define _SIGNAL_H
|
||
|
|
||
|
typedef int sig_atomic_t;
|
||
|
|
||
|
#endif
|