mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 15:01:32 -04:00
fcc5cf828d
* libu64 * libu64 -O2 * Add libu64.md
12 lines
234 B
C
12 lines
234 B
C
#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
|