7 lines
225 B
C
7 lines
225 B
C
|
#ifndef _SIGNAL_H
|
||
|
#define _SIGNAL_H
|
||
|
|
||
|
typedef int sig_atomic_t; // FIXME: Implement signals (I'm trying to build bc, this header is only to satisfy it) and
|
||
|
// use a proper atomic integer type.
|
||
|
|
||
|
#endif
|