/*TITLE include file to provide dummy error-checking memory allocation routines */ /****keyword-flag*** "%v %f %n" */ /* "1 25-Aug-91,9:33:42 XMEMD.H" */ /****revision-history****/ /*1 XMEMD.H 25-Aug-91,9:33:42 Include file for dummy xmem functions. */ /****revision-history****/ /* ********************* GLOBAL FUNCTIONS ******************** */ #define x_malloc(n) malloc(n) #define x_calloc(n,m) calloc(n,m) #define x_free(p) free(p) #define x_chkfree()