Allow 'bool' to be used in combination with files which include <stdbool.h>.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2853 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
Meep-Eep
2007-09-16 15:26:03 +00:00
parent 3bfa09ec11
commit 3505a9a35e
+3 -1
View File
@@ -84,10 +84,12 @@
# undef UQM_INT64 # undef UQM_INT64
#endif #endif
#undef false
#undef true
typedef enum typedef enum
{ {
false = 0, false = 0,
true true = 1
} bool; } bool;
/* If it isn't char, what is it ?!*/ /* If it isn't char, what is it ?!*/