summaryrefslogtreecommitdiff
path: root/include/malloc.h
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2017-09-20 19:26:28 -0400
committerGitHub <noreply@github.com>2017-09-20 19:26:28 -0400
commitd485f17784eefd4cd965026c15cea9e065546627 (patch)
tree3217724f4142ff88e1ae10d8375183612396e0bf /include/malloc.h
parentf94074b6027d1efe067fd972127eb7730cbef2e0 (diff)
parent5fc2c964fb002d79a192937afc623555a411980c (diff)
Merge pull request #31 from PikalaxALT/sub_81700F8
rom_81700F8
Diffstat (limited to 'include/malloc.h')
-rw-r--r--include/malloc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/malloc.h b/include/malloc.h
index b3216b05c..4568e244a 100644
--- a/include/malloc.h
+++ b/include/malloc.h
@@ -5,8 +5,10 @@
#define calloc AllocZeroed
#define free Free
+extern u8 gHeap[];
void *Alloc(u32 size);
void *AllocZeroed(u32 size);
void Free(void *pointer);
+void InitHeap(void *pointer, u32 size);
#endif // GUARD_MALLOC_H