Refactor, GLFW->SDL
[vg.git] / vg_stdint.h
diff --git a/vg_stdint.h b/vg_stdint.h
new file mode 100644 (file)
index 0000000..fb1a62d
--- /dev/null
@@ -0,0 +1,15 @@
+#ifndef VG_STDINT_H
+#define VG_STDINT_H
+
+#include <stdint.h>
+
+typedef uint8_t  u8;
+typedef uint16_t u16;
+typedef uint32_t u32;
+typedef uint64_t u64;
+typedef int8_t   i8;
+typedef int16_t  i16;
+typedef int32_t  i32;
+typedef int64_t  i64;
+
+#endif /* VG_STDINT_H */