mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
15 lines
299 B
C++
15 lines
299 B
C++
#ifndef __C_MALLOC_H_
|
|||
|
|
#define __C_MALLOC_H_
|
||
|
|
|
||
|
|
#include "JSystem/JKernel/JKRHeap/JKRHeap.h"
|
||
|
|
#include "global.h"
|
||
|
|
|
||
|
|
class cMl {
|
||
|
|
static void init(JKRHeap*);
|
||
|
|
static void* memalignB(int, unsigned long);
|
||
|
|
static void free(void*);
|
||
|
|
};
|
||
|
|
|
||
|
|
extern JKRHeap* lbl_80451150; // SComponent::cMl::Heap
|
||
|
|
|
||
|
|
#endif
|