Every major compiler includes it, including VS2013 and higher, so the
vast, vast majority of people shouldn't be affected by this. Every major
compiler's stdbool.h also checks for C++ anyway. These checks are
redundant.
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12672
d7cf8633-e32d-0410-b094-
e92efae38249
#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)