ref: 02abca68e91999009c0f3ef154fb99f39c212c2c
dir: /src/libscc/xcalloc.c/
static char sccsid[] = "@(#) ./lib/scc/xcalloc.c"; #include <stdlib.h> #include <scc/scc.h> void * xcalloc(size_t n, size_t size) { void *p = calloc(n, size); if (!p) die("out of memory"); return p; }