static char *DbugMalloc ( int size) { register char *new_malloc; ----> if (!(new_malloc = (char*) malloc ((unsigned int) size))) DbugExit ("out of memory"); return (new_malloc); }