From 0e25e126e018ee7d2ae43081d17e101437944f94 Mon Sep 17 00:00:00 2001 From: igor Date: Wed, 18 Mar 2026 15:39:17 -0700 Subject: [PATCH] Add true/false to core.h. --- core.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/core.h b/core.h index 5e81307..92aeac5 100644 --- a/core.h +++ b/core.h @@ -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;