Prevent collission with PS2 SDK

This commit is contained in:
twinaphex 2020-07-12 19:10:14 +02:00 committed by kub
parent 182b8d01f9
commit e6a52e1940

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