home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_05 / 1005076b < prev    next >
Text File  |  1992-03-09  |  214b  |  13 lines

  1. /*
  2.  *    Listing 8 - local malloc header
  3.  */
  4.  
  5.  
  6. #ifndef    MY_MALLOC
  7. #define    MY_MALLOC
  8.  
  9. #define    malloc(s)    loc_malloc(s,__FILE__,__LINE__)
  10. #define    free(p)        loc_free(p,__FILE__,__LINE__)
  11.  
  12. #endif    /* MY_MALLOC */
  13.