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