The unified diff between revisions [cc8258a6..] 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 [cc8258a6c3643514892e84cf24fed008bc6f9660]
# new_revision [08a35a6680cdf8985cfb16fa6779ee6db7202a9c]
#
# patch "types.h"
#  from [410b58a239e1dd3e76ed5c6c9f7cfa28d09ef6c7]
#    to [bce1f7a2b5361213ec22863c9d259353faeaaa70]
#
============================================================
--- types.h	410b58a239e1dd3e76ed5c6c9f7cfa28d09ef6c7
+++ types.h	bce1f7a2b5361213ec22863c9d259353faeaaa70
@@ -7,4 +7,10 @@ typedef int bool;
 
 #define NULL 0
 
+typedef unsigned int size_t;
+
+typedef struct {
+    float x, y, z;
+} vec3f;
+
 #endif /* __TYPES_H */