Add true/false to core.h.

This commit is contained in:
2026-03-18 15:39:17 -07:00
parent aef23bd6cd
commit 0e25e126e0
+8
View File
@@ -3,6 +3,14 @@
/* ---- Types ---------------------------------------------------------- */
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
typedef unsigned char U8;
typedef unsigned short U16;
typedef unsigned int U32;