void *Calloc( int n, int size ) { void *p; Newxz( p, n * size, char ); return p; } void Free( void *p ) { Safefree( p ); }