2021-01-18 13:02:51 -06:00
|
|
|
#ifndef C_MALLOC_H_
|
|
|
|
|
#define C_MALLOC_H_
|
2021-01-07 02:04:53 +01:00
|
|
|
|
|
|
|
|
#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
|