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