summary refs log tree commit diff stats
path: root/plugins/fishlim/bool.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/fishlim/bool.h')
-rw-r--r--plugins/fishlim/bool.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/fishlim/bool.h b/plugins/fishlim/bool.h
new file mode 100644
index 00000000..2c8ddde4
--- /dev/null
+++ b/plugins/fishlim/bool.h
@@ -0,0 +1,5 @@
+/* stdbool.h replacement for MSVC */
+#define false 0
+#define true 1
+#define bool _Bool
+typedef int _Bool;