X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/3d9156a7a519a5e3aa1b92e9d9d4b991f1aed7ff..fbd86d4cc20b02a10edcca92fb7ae0a143e63cc4:/include/stdbool.h diff --git a/include/stdbool.h b/include/stdbool.h index be545ce..994cee8 100644 --- a/include/stdbool.h +++ b/include/stdbool.h @@ -33,14 +33,14 @@ #ifndef __cplusplus -#define false 0 -#define true 1 - #define bool _Bool #if __STDC_VERSION__ < 199901L && __GNUC__ < 3 typedef int _Bool; #endif +#define false (bool)0 +#define true (bool)1 + #endif /* !__cplusplus */ #endif /* !_STDBOOL_H_ */