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