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