Files
af/include/system_heap.h
Derek Hensley ae5aa8db7c system_heap (007060) OK (#60)
* OK

* Renames + cleanup

* format

---------

Co-authored-by: emilybrooks <emilybrooksemilybrooks@gmail.com>
2023-08-17 09:45:57 -07:00

12 lines
218 B
C

#ifndef SYSTEM_HEAP_H
#define SYSTEM_HEAP_H
#include "ultra64.h"
#include "libc/stddef.h"
void* SystemHeap_Malloc(size_t size);
void SystemHeap_Free(void* ptr);
void SystemHeap_Init(void* heap, size_t size);
#endif