The unified diff between revisions [7ac10cd3..] and [3dc5e7ac..] 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 [3dc5e7ac4bcb952cc267892653dd78ed095d8778]
#
# add_file "types.h"
#  content [bce1f7a2b5361213ec22863c9d259353faeaaa70]
#
============================================================
--- /dev/null	
+++ types.h	bce1f7a2b5361213ec22863c9d259353faeaaa70
@@ -0,0 +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 */