summaryrefslogtreecommitdiff
path: root/include/global.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/global.h')
-rw-r--r--include/global.h5
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