9 lines
246 B
C
9 lines
246 B
C
#ifndef _SIGNAL_H
|
|
#define _SIGNAL_H
|
|
|
|
typedef int sig_atomic_t; // On the x86, writes to aligned 32-bit and 64-bit integers are always atomic. (Or that's what
|
|
// I understood)
|
|
|
|
#define SIGINT 1 // Not implemented.
|
|
|
|
#endif |