Fixed warnings from Win32 builds with MinGW.

This commit is contained in:
skarg
2007-11-27 23:12:41 +00:00
parent 454e49efdb
commit a4e700bbee
+4 -1
View File
@@ -3,10 +3,13 @@
/* C99 Boolean types for compilers without C99 support */
/* http://www.opengroup.org/onlinepubs/009695399/basedefs/stdbool.h.html */
#if !defined(__cplusplus)
#if !defined(__GNUC__)
/* _Bool builtin type is included in GCC */
typedef enum { _Bool_must_promote_to_int = -1, false = 0, true = 1 } _Bool;
#endif
#define bool _Bool
#define true 1
#define false 0