blob: 05a9883a4c22a0584ea915ef9483b77b8abf9a04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
void *dmalloc(size_t);
void dfree(void *);
void *drealloc(void *, size_t);
#define malloc(x) dmalloc(x)
#define free(x) dfree(x)
#define realloc(x,y) drealloc(x,y)
#define calloc(x,y) dcalloc(x,y)
/* use this to intialize the internals of the dmalloc engine */
void dmalloc_initialize(void);
|