ref: dbb8b774527a030a3b83b8a422234755fc928ed3 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; }