diff options
Diffstat (limited to 'include/stdbool.h')
-rw-r--r-- | include/stdbool.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/stdbool.h b/include/stdbool.h index 24cf1c038..54b1fbeee 100644 --- a/include/stdbool.h +++ b/include/stdbool.h @@ -32,12 +32,7 @@ #define false 0
#define true 1
-#define bool _Bool
-
-/* For compilers that don't have the builtin _Bool type. */
-#if defined(_MSC_VER) || (__STDC_VERSION__ < 199901L && __GNUC__ < 3)
-typedef unsigned char _Bool;
-#endif
+#define bool int
#endif /* !__cplusplus */
|