summaryrefslogtreecommitdiff
path: root/include/SSystem/SComponent/c_malloc.h
blob: 95b2d8f298b5a3e9606ed91941bfb9de5be2a85b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef C_MALLOC_H
#define C_MALLOC_H

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