mirror of
https://github.com/zeldaret/af.git
synced 2026-09-26 13:33:16 -04:00
ae5aa8db7c
* OK * Renames + cleanup * format --------- Co-authored-by: emilybrooks <emilybrooksemilybrooks@gmail.com>
12 lines
218 B
C
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
|