mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
5867eaf68b
* typedef for cPhs_Step * make sdk includes consistent * d_menu_quit / d_msg_scrn_explain debug * d_a_obj_testcube mostly done * d_debug_pad mostly done * jstudio tool library headers * some JStudioCameraEditor headers * d_jcam_editor mostly done * try fixing some shield regressions * d_bg_parts mostly done * fix merge errors * debug fix
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 */
|