Listing 8 Local malloc Header

#ifndef MY_MALLOC
#define MY_MALLOC

#define malloc(s)        loc_malloc(s,__FILE__,__LINE__)
#define free(p)          loc_free(p,__FILE__,__LINE__)

#endif  /* MY_MALLOC */
/* End of File */