You've already forked 2ship2harkinian-Android
mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-03-10 11:20:47 -07:00
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
|