libc: Add stubbed signal.h header

This commit is contained in:
apio 2022-10-15 15:13:38 +02:00
parent 8d552b1522
commit e3e33bacbc

View File

@ -0,0 +1,7 @@
#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