ref: ec4c79f3a6ed97ec0c407a870827382cbefb1166 dir: /src/libscc/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; }