Luna/libs/libc/include/signal.h
2022-10-21 18:31:19 +02:00

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