6 lines
133 B
C
6 lines
133 B
C
#define MEMSIZE 64 * 1024 // Size of memory in bytes
|
|
|
|
long get_index(void *ptr);
|
|
void *mymalloc(size_t);
|
|
void myfree(void *);
|