Files
tp/include/SSystem/SComponent/c_malloc.h
T
TakaRikka a6e76c0841 project cleanup (#2895)
* some wii OS fixes

* remove old dol2asm comments

* remove dol2asm.h

* remove function address comments

* normalize ATTRIBUTE_ALIGN usage

* DECL_WEAK macro

* fix gcc attribute weak macro

* wrap more mwcc specific things in ifdefs

* fixes

* fix revo sdk version flags

* fixes
2025-11-30 15:23:42 -07:00

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 */