ref: daa27ec5c80b95ef9b0081d273142e96255ac3cf dir: /lib/xcalloc.c/
#include <stdlib.h> #include <cc.h> void * xcalloc(size_t n, size_t size) { register void *p = calloc(n, size); if (!p) die("out of memory"); return p; }