aboutsummaryrefslogtreecommitdiff
path: root/include/stdbool.h
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-12-29 12:20:21 +0000
committermarha <marha@users.sourceforge.net>2010-12-29 12:20:21 +0000
commit053f5dfd42ade05252e586a282e34906db10828d (patch)
treede215580ce205409a6d810a005c6c5909f3145d1 /include/stdbool.h
parent04ceb8c4a0cca3d8682f094d1d6faed8f693afb5 (diff)
parent807c6931fe683fd844ceec1b023232181e6aae03 (diff)
downloadvcxsrv-053f5dfd42ade05252e586a282e34906db10828d.tar.gz
vcxsrv-053f5dfd42ade05252e586a282e34906db10828d.tar.bz2
vcxsrv-053f5dfd42ade05252e586a282e34906db10828d.zip
svn merge ^/branches/released .
Diffstat (limited to 'include/stdbool.h')
-rw-r--r--include/stdbool.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/stdbool.h b/include/stdbool.h
new file mode 100644
index 000000000..111b8f2a9
--- /dev/null
+++ b/include/stdbool.h
@@ -0,0 +1,8 @@
+#ifndef __STDBOOL_H__
+#define __STDBOOL_H__
+
+typedef int bool;
+#define false 0
+#define true 1
+#endif
+