Files
tp/include/SSystem/SComponent/c_malloc.h
T

16 lines
249 B
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef C_MALLOC_H
#define C_MALLOC_H
#include "dolphin/types.h"
2023-05-12 12:10:14 -07:00
class JKRHeap;
2021-03-30 02:45:32 +02:00
struct cMl {
2021-04-08 16:01:29 +02:00
static JKRHeap* Heap;
2025-11-30 14:23:42 -08:00
static void init(JKRHeap*);
static void* memalignB(int, u32);
static void free(void*);
2021-03-30 02:45:32 +02:00
};
2021-03-28 22:49:05 +02:00
#endif /* C_MALLOC_H */