summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2017-02-25 17:23:41 +0300
committerGeorge Hazan <ghazan@miranda.im>2017-02-25 17:23:41 +0300
commit13fe5269a7cfe355a832ff36b09ca918fb46add3 (patch)
tree333997847de96950dc9cd695b2e46ba150d234eb /include
parent8d99e5b9bc291bfb886bb104edb5087cab557141 (diff)
compilation fix
Diffstat (limited to 'include')
-rw-r--r--include/msapi/stdbool.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/msapi/stdbool.h b/include/msapi/stdbool.h
new file mode 100644
index 0000000000..db5d31a544
--- /dev/null
+++ b/include/msapi/stdbool.h
@@ -0,0 +1,21 @@
+/* stdbool.h standard header */
+
+#ifndef _STDBOOL
+#define _STDBOOL
+
+#define __bool_true_false_are_defined 1
+
+#ifndef __cplusplus
+
+#define bool _Bool
+#define false 0
+#define true 1
+
+#endif /* __cplusplus */
+
+#endif /* _STDBOOL */
+
+/*
+ * Copyright (c) 1992-2010 by P.J. Plauger. ALL RIGHTS RESERVED.
+ * Consult your license regarding permissions and restrictions.
+V5.30:0009 */