Prevent collission with PS2 SDK

This commit is contained in:
twinaphex 2020-07-12 19:10:14 +02:00
parent 146970f72e
commit 6a6d9cdffa

View File

@ -3,6 +3,7 @@
#include <stdint.h>
#ifndef __TAMTYPES_H__
#ifndef UTYPES_DEFINED
typedef uint8_t u8;
typedef int8_t s8;
@ -11,6 +12,8 @@ typedef int16_t s16;
typedef uint32_t u32;
typedef int32_t s32;
#endif
#endif
typedef uintptr_t uptr; /* unsigned pointer-sized int */
#endif