Fix build failure on ARM64.

This commit is contained in:
C.W. Betts
2020-09-21 20:44:04 -06:00
parent f355fd8cb4
commit f61b0cbf40
+5
View File
@@ -27,7 +27,12 @@ typedef char CHAR;
#if !defined(BOOL)
#if defined(__MACH__)
#if defined(__arm64__)
#include <stdbool.h>
typedef _Bool BOOL;
#else
typedef signed char BOOL;
#endif
#else
typedef int BOOL;
#endif