diff options
Diffstat (limited to 'include/libc')
| -rw-r--r-- | include/libc/stdint.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/libc/stdint.h b/include/libc/stdint.h index 854fd25..e834884 100644 --- a/include/libc/stdint.h +++ b/include/libc/stdint.h @@ -1,10 +1,8 @@ #ifndef LIBC_STDINT_H #define LIBC_STDINT_H -#include "PR/ultratypes.h" - -typedef s32 intptr_t; -typedef u32 uintptr_t; +typedef signed int intptr_t; +typedef unsigned int uintptr_t; #define INT8_MIN (-0x80) #define INT16_MIN (-0x8000) |
