summaryrefslogtreecommitdiff
path: root/src/boot_O2/system_malloc.c
diff options
context:
space:
mode:
authorDerek Hensley <hensley.derek58@gmail.com>2023-05-28 20:04:07 -0700
committerGitHub <noreply@github.com>2023-05-29 13:04:07 +1000
commitfc475a97565ade34d57f80970c6b5cebcc2892a7 (patch)
tree92d32e23a29bf3b2c7063ddc730c7c66b5b5f4d6 /src/boot_O2/system_malloc.c
parent1ec875f6dccf7efd9d637cd27a1a500f35eed43e (diff)
Docs Cleanup (#1153)
* sysheap * Gorons * Update goron comment * functions.h * Update src/boot_O2/system_heap.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * add header * Fix header guards * Update data * Add malloc and free to header --------- Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com>
Diffstat (limited to 'src/boot_O2/system_malloc.c')
-rw-r--r--src/boot_O2/system_malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot_O2/system_malloc.c b/src/boot_O2/system_malloc.c
index 56608166c..cea017b38 100644
--- a/src/boot_O2/system_malloc.c
+++ b/src/boot_O2/system_malloc.c
@@ -38,7 +38,7 @@ u32 SystemArena_CheckArena(void) {
return __osCheckArena(&gSystemArena);
}
-void SystemArena_InitArena(void* start, size_t size) {
+void SystemArena_Init(void* start, size_t size) {
__osMallocInit(&gSystemArena, start, size);
}