mirror of https://github.com/zeldaret/tp.git
16 lines
303 B
C++
16 lines
303 B
C++
#ifndef C_MALLOC_H_
|
|
#define C_MALLOC_H_
|
|
|
|
#include "JSystem/JKernel/JKRHeap/JKRHeap.h"
|
|
#include "global.h"
|
|
|
|
class cMl {
|
|
public:
|
|
static void init(JKRHeap*);
|
|
static void* memalignB(int, unsigned long);
|
|
static void free(void*);
|
|
};
|
|
|
|
extern JKRHeap* lbl_80451150; // SComponent::cMl::Heap
|
|
|
|
#endif |