summaryrefslogtreecommitdiff
path: root/include/memory.h
diff options
context:
space:
mode:
authorSeth Barberee <seth.barberee@gmail.com>2021-05-23 16:19:35 -0500
committerGitHub <noreply@github.com>2021-05-23 16:19:35 -0500
commiteaa141c612dd1689936a21bd57018a55ff686b69 (patch)
treefafe2a9a562af6a8e36716ff76a5b3e8b30d4411 /include/memory.h
parentf402e46cd3c8b7236673d6edbae77903a7cc0618 (diff)
Keep on keepin on (#38)
* end of may dump of work * move save text to src * decomp a little more
Diffstat (limited to 'include/memory.h')
-rw-r--r--include/memory.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/memory.h b/include/memory.h
index 4b1e587..ef99757 100644
--- a/include/memory.h
+++ b/include/memory.h
@@ -52,5 +52,8 @@ void MemoryCopy32(u32 *dest, u32 *src, s32 size);
void InitHeapInternal(void);
void DoInitHeap(struct HeapDescriptor *, struct HeapSettings *, struct HeapFreeListElement *, u32);
void InitSubHeap(struct HeapDescriptor *, struct HeapMemoryBlock *, u32);
+s32 _LocateSet(struct HeapDescriptor *heap, s32 size, s32 param_3);
+void *MemoryAlloc(s32 size, s32 b);
+void MemoryFree(void *a);
#endif // GUARD_MEMORY_H