mirror of
https://github.com/encounter/tww.git
synced 2026-03-30 11:41:09 -07:00
adb95b135c
Original repository: https://github.com/encounter/ww
16 lines
249 B
C++
16 lines
249 B
C++
#ifndef C_MALLOC_H
|
|
#define C_MALLOC_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class JKRHeap;
|
|
|
|
struct cMl {
|
|
static JKRHeap* Heap;
|
|
static void init(JKRHeap*);
|
|
static void* memalignB(int, u32);
|
|
static void free(void*);
|
|
};
|
|
|
|
#endif /* C_MALLOC_H */
|