#ifndef WWHEAP_H_INCLUDED
#define WWHEAP_H_INCLUDED

#include <sys/types.h>


extern void *malloc(size_t size);
extern void free(void *p);

extern void heap_walk(void);



#endif /* #ifndef WWHEAP_H_INCLUDED */

