mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-20 15:41:10 -04:00
12 lines
220 B
C
12 lines
220 B
C
#ifndef SYSTEM_HEAP_H
|
|
#define SYSTEM_HEAP_H
|
|
|
|
#include "stddef.h"
|
|
#include "PR/ultratypes.h"
|
|
|
|
void* SystemHeap_Malloc(size_t size);
|
|
void SystemHeap_Free(void* ptr);
|
|
void SystemHeap_Init(void* start, size_t size);
|
|
|
|
#endif
|