The unified diff between revisions [d8ed90db..] and [08a35a66..] 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 [08a35a6680cdf8985cfb16fa6779ee6db7202a9c]
#
# patch "types.h"
#  from [5b44150f29ad170380f02a9a90f58cbf25683924]
#    to [bce1f7a2b5361213ec22863c9d259353faeaaa70]
#
============================================================
--- types.h	5b44150f29ad170380f02a9a90f58cbf25683924
+++ types.h	bce1f7a2b5361213ec22863c9d259353faeaaa70
@@ -1,3 +1,16 @@
+#ifndef __TYPES_H
+#define __TYPES_H
+
 typedef int bool;
 #define TRUE 1
 #define FALSE 0
+
+#define NULL 0
+
+typedef unsigned int size_t;
+
+typedef struct {
+    float x, y, z;
+} vec3f;
+
+#endif /* __TYPES_H */