diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-10-14 13:15:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-14 13:15:31 -0500 |
commit | 0979ea91fb247b642cf7aa9e0bea5265917923d8 (patch) | |
tree | aa80ec77fadae2ccc81bd2dd655bd45a9532894f /include/malloc.h | |
parent | d40e737d52f39a0b5516b97a90c985825a892b63 (diff) | |
parent | c3113db931ad406154c3bfd60dc26458e0d5fe3f (diff) |
Merge pull request #357 from DizzyEggg/move_heap
Move HEAP_SIZE to malloc and use void instead of empty argument list
Diffstat (limited to 'include/malloc.h')
-rw-r--r-- | include/malloc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/malloc.h b/include/malloc.h index 6efa8fbef..c215f56c0 100644 --- a/include/malloc.h +++ b/include/malloc.h @@ -13,6 +13,7 @@ } extern u8 gHeap[]; + void *Alloc(u32 size); void *AllocZeroed(u32 size); void Free(void *pointer); |