mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 06:50:43 -04:00
1e8f64cb5e
Co-authored-by: Pheenoh <pheenoh@gmail.com>
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 |