aboutsummaryrefslogtreecommitdiff
path: root/libpsn00b/include/malloc.h
blob: d94823fec2b1e1ab6321589eb6af67fd67ad0a4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _MALLOC_H
#define _MALLOC_H

#ifdef __cplusplus
extern "C" {
#endif

unsigned int *GetBSSend();
void InitHeap(unsigned int *addr, int size);
int SetHeapSize(int size);
void *malloc(int size);
void free(void *ptr);

#ifdef __cplusplus
}
#endif

#endif // _MALLOC_H