summaryrefslogtreecommitdiff
path: root/compatibility/stdbool.h
diff options
context:
space:
mode:
Diffstat (limited to 'compatibility/stdbool.h')
-rw-r--r--compatibility/stdbool.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/compatibility/stdbool.h b/compatibility/stdbool.h
deleted file mode 100644
index 1ea9bb1..0000000
--- a/compatibility/stdbool.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef __STDBOOL_REPLACEMENT__H__
-#define __STDBOOL_REPLACEMENT__H__
-
-#ifdef _MSC_VER
-typedef enum { __bool_must_promote_to_int = -1, false = 0, true = 1 } __bool;
-#define bool __bool
-#define false 0
-#define true 1
-#endif
-
-#endif /* __STDBOOL_REPLACEMENT__H__ */