add more crap

This commit is contained in:
StapleButter
2016-05-16 17:48:40 +02:00
parent cfdfd4b231
commit 5b7ae6dab3
5 changed files with 83 additions and 3 deletions

15
types.h Normal file
View File

@ -0,0 +1,15 @@
// types, common crap
#ifndef TYPES_H
#define TYPES_H
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef unsigned long int u64;
typedef signed char s8;
typedef signed short s16;
typedef signed int s32;
typedef signed long int s64;
#endif // TYPES_H