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