summaryrefslogtreecommitdiff
path: root/mm/include/system_heap.h
blob: e0864cca6ce7016e98f7b8bdffb56a81ffb868a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef SYSTEM_HEAP_H
#define SYSTEM_HEAP_H

#include "libc/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