#ifndef __TM_MALLOC__ #define __TM_MALLOC__ typedef struct tm_mem_t { int t_freed; char *t_id; void *t_addr; } TM_MEM_T; char *tm_malloc( size_t, char [] ); void tm_free( void * ); void tm_report( void ); #endif