diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2017-09-06 08:46:47 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2017-09-06 08:46:47 -0400 |
commit | 83dbdc031856410b8b1b9154900cfcb5c069ec46 (patch) | |
tree | 5474f5788bcdd0b57ce7dfea05e66ce4945cfdda /include/global.h | |
parent | 63dd0ea397ff01787753f182541ed8324f2d498b (diff) |
npc_clear_ids_and_state
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h index c43b57e03..f9c5f68be 100644 --- a/include/global.h +++ b/include/global.h @@ -9,6 +9,11 @@ // to help in decompiling #define asm_comment(x) asm volatile("@ -- " x " -- ") +#ifdef __APPLE__ +void memset(void *, int, size_t); +void memcpy(void *, const void *, size_t); +#endif // __APPLE__ + #define ARRAY_COUNT(array) (sizeof(array) / sizeof((array)[0])) #define POKEMON_NAME_LENGTH 10 |