#ifndef MALLOC_H #define MALLOC_H void* malloc(const int size); void free(void *ptr); void alloc_info(void); #endif /* ifndef MALLOC_H */