Files
tp/include/SComponent/c_malloc.h
T

16 lines
303 B
C++
Raw Normal View History

#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 {
public:
2021-01-07 02:04:53 +01:00
static void init(JKRHeap*);
static void* memalignB(int, unsigned long);
static void free(void*);
};
extern JKRHeap* lbl_80451150; // SComponent::cMl::Heap
#endif