The unified diff between revisions [d8ed90db..] 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 [d8ed90db2d4284a290224447c40a0d9cef3fbc31]
# new_revision [cc8258a6c3643514892e84cf24fed008bc6f9660]
#
# patch "types.h"
#  from [5b44150f29ad170380f02a9a90f58cbf25683924]
#    to [410b58a239e1dd3e76ed5c6c9f7cfa28d09ef6c7]
#
============================================================
--- types.h	5b44150f29ad170380f02a9a90f58cbf25683924
+++ types.h	410b58a239e1dd3e76ed5c6c9f7cfa28d09ef6c7
@@ -1,3 +1,10 @@
+#ifndef __TYPES_H
+#define __TYPES_H
+
 typedef int bool;
 #define TRUE 1
 #define FALSE 0
+
+#define NULL 0
+
+#endif /* __TYPES_H */