summaryrefslogtreecommitdiff
path: root/include/libu64/system_heap.h
blob: 7f8aa9d7e82bce7ee30e2ee575b6bb437efe3fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef LIBU64_SYSTEM_HEAP_H
#define LIBU64_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