home *** CD-ROM | disk | FTP | other *** search
- /* Memory checking routines */
- # ifdef MDEBUG
- # define alloc(z) ck_alloc(__FILE__,__LINE__,z)
- # define free(z) ck_free(__FILE__,__LINE__,z)
- # define Chk(z) ck_mem(__FILE__,__LINE__,z)
- # define Minfo(z) ck_info(__FILE__,__LINE__,z)
- extern char *ck_alloc();
- extern void ck_free();
- extern void ck_mem();
- extern void ck_info();
- # else
- # define Chk(z) /* Chk(z) */
- # define Minfo(z) /* Minfo(z) */
- # endif
-