8 lines
167 B
C
8 lines
167 B
C
#include <stdio.h>
|
|
#define MEMSIZE 64 * 1024 // Size of memory in bytes
|
|
|
|
long get_index(void *ptr);
|
|
void print_memlist();
|
|
void *mymalloc(size_t);
|
|
void myfree(void *);
|