Files
tp/include/SComponent/c_malloc.h
T

15 lines
299 B
C++
Raw Normal View History

2021-01-07 02:04:53 +01:00
#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