]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - qtypes.h
Clean up qtypes.h a bit by including stdbool.h no matter what, removing checks
[xonotic/darkplaces.git] / qtypes.h
index 6521899965ea6993427e3b0ec53424b9ee311044..f6ce845d633a82910e0d9aa8384d2e0f4ddbc855 100644 (file)
--- a/qtypes.h
+++ b/qtypes.h
@@ -3,16 +3,9 @@
 #define QTYPES_H
 
 #include <stdint.h>
-
-#ifndef __cplusplus
-#ifdef _MSC_VER
-typedef enum {false, true} bool;
-#else
 #include <stdbool.h>
-#endif
-#endif
-typedef bool qboolean;
 
+typedef bool qboolean;
 
 #ifndef NULL
 #define NULL ((void *)0)