#ifndef __MY_MALLOC_H_ #define __MY_MALLOC_H_ extern char *my_malloc(unsigned int); extern void my_free(char *); #endif __MY_MALLOC_H_