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

#ifdef __cplusplus
extern "C" {
#endif

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

#ifdef __cplusplus
}
#endif

#endif // _MALLOC_H