mirror of
https://github.com/HarbourMasters/2ship2harkinian.git
synced 2024-11-28 00:30:37 +00:00
fc475a9756
* sysheap * Gorons * Update goron comment * functions.h * Update src/boot_O2/system_heap.c Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com> * add header * Fix header guards * Update data * Add malloc and free to header --------- Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com>
12 lines
225 B
C
12 lines
225 B
C
#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
|