- resolve conflicts in Boolean type for MacOS X

This commit is contained in:
Bryce Denney 2001-09-26 17:30:15 +00:00
parent d4905da165
commit 2d257370af
1 changed files with 5 additions and 1 deletions

View File

@ -426,7 +426,11 @@
# error "could not define bx_ptr_equiv_t to size of int*"
#endif
#if BX_WITH_MACOS == 0
#if BX_WITH_CARBON
typedef unsigned char Boolean;
#elif BX_WITH_MACOS
// don't define Boolean at all
#else
typedef unsigned int Boolean;
#endif