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