The unified diff between revisions [7ac10cd3..] and [cc8258a6..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'types.h'

#
# old_revision [7ac10cd34167baa43683a09e9e9e6778e691171d]
# new_revision [cc8258a6c3643514892e84cf24fed008bc6f9660]
#
# add_file "types.h"
#  content [410b58a239e1dd3e76ed5c6c9f7cfa28d09ef6c7]
#
============================================================
--- /dev/null	
+++ types.h	410b58a239e1dd3e76ed5c6c9f7cfa28d09ef6c7
@@ -0,0 +1,10 @@
+#ifndef __TYPES_H
+#define __TYPES_H
+
+typedef int bool;
+#define TRUE 1
+#define FALSE 0
+
+#define NULL 0
+
+#endif /* __TYPES_H */