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