include guards for types :)

This commit is contained in:
shockrahwow 2019-11-29 02:06:54 -08:00
parent 160389d470
commit 58dd3e9ceb

View File

@ -1,3 +1,5 @@
#ifndef TYPES_H
#define TYPES_H
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned long u32;
@ -8,4 +10,4 @@ typedef signed short s16;
typedef signed long s32;
typedef signed long long s64;
#endif