/*
 *	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 */
