summaryrefslogtreecommitdiff
path: root/include/libc/stdint.h
diff options
context:
space:
mode:
authorAnghelo Carvajal <angheloalf95@gmail.com>2023-08-05 10:58:09 -0400
committerGitHub <noreply@github.com>2023-08-05 10:58:09 -0400
commit94b300b0d0e228dc38dcb08ca160334fa2ba128f (patch)
treec818f04c5948982e0c3932cb04fe4c4575fb9889 /include/libc/stdint.h
parent5b54707958ca7fe5455436cf732cdf034232cd50 (diff)
`m_actor_dlftbls.c` (#32)
* start * match the file * actor_dlftbls_num * script to extract the actor table * bootstrap actor table * ActorId enum * migrate actor table * reorganize overlays in subfolders * Fix Player * migrate bss * cleanup and format * ActorProfile * Move player_actor to actors folder * RomOffset * ACTOR_ID_MAX
Diffstat (limited to 'include/libc/stdint.h')
-rw-r--r--include/libc/stdint.h6
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)