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