]> git.saurik.com Git - apple/libc.git/blobdiff - include/stdbool.h
Libc-594.9.5.tar.gz
[apple/libc.git] / include / stdbool.h
index be545ce1a1ad51fa276ed32ad8991599a5cef207..994cee88a4ca61752d36bb57a22352f2f87fa74d 100644 (file)
 
 #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_ */