X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/8f6c56a50524aa785f7e596d52dddfb331e18961..b226f5e54a60dc81db17b1260381d7dbfea3cdf1:/osfmk/mach/i386/boolean.h diff --git a/osfmk/mach/i386/boolean.h b/osfmk/mach/i386/boolean.h index 03a94ba6a..100f7e7b5 100644 --- a/osfmk/mach/i386/boolean.h +++ b/osfmk/mach/i386/boolean.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. + * Copyright (c) 2000-2006 Apple Computer, Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * @@ -65,6 +65,10 @@ #ifndef _MACH_I386_BOOLEAN_H_ #define _MACH_I386_BOOLEAN_H_ +#if defined(__x86_64__) && !defined(KERNEL) +typedef unsigned int boolean_t; +#else typedef int boolean_t; +#endif #endif /* _MACH_I386_BOOLEAN_H_ */