From f61b0cbf4092fcb51b19730fd33190c04261303b Mon Sep 17 00:00:00 2001 From: "C.W. Betts" Date: Mon, 21 Sep 2020 20:44:04 -0600 Subject: [PATCH] Fix build failure on ARM64. --- Bliss/core/types.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Bliss/core/types.h b/Bliss/core/types.h index 9963a48..4c227f3 100644 --- a/Bliss/core/types.h +++ b/Bliss/core/types.h @@ -27,7 +27,12 @@ typedef char CHAR; #if !defined(BOOL) #if defined(__MACH__) +#if defined(__arm64__) +#include +typedef _Bool BOOL; +#else typedef signed char BOOL; +#endif #else typedef int BOOL; #endif