software/include: add stdbool.h
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Sat, 12 Jan 2013 09:51:07 +0000 (10:51 +0100)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Sat, 12 Jan 2013 09:51:07 +0000 (10:51 +0100)
software/include/base/stdbool.h [new file with mode: 0644]

diff --git a/software/include/base/stdbool.h b/software/include/base/stdbool.h
new file mode 100644 (file)
index 0000000..d58bb58
--- /dev/null
@@ -0,0 +1,8 @@
+#ifndef __STDBOOL_H
+#define __STDBOOL_H
+
+#define bool _Bool
+#define true 1
+#define false 0
+
+#endif /* __STDBOOL_H */