The unified diff between revisions [7ac10cd3..] and [23a3e9a5..] 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 [23a3e9a50b4034343e3bd217d2c225dcaec064dd]
#
# add_file "types.h"
#  content [00b92d607bdb71185e8326714de30eb16d3329ff]
#
============================================================
--- /dev/null	
+++ types.h	00b92d607bdb71185e8326714de30eb16d3329ff
@@ -0,0 +1,12 @@
+#ifndef __TYPES_H
+#define __TYPES_H
+
+typedef int bool;
+#define TRUE 1
+#define FALSE 0
+
+#define NULL 0
+
+typedef int size_t;
+
+#endif /* __TYPES_H */