ref: 193ddab783899d6a84e9dc0afd3f2ee7af2fcdb2 dir: /lib/xmalloc.c/
#include <stdlib.h> #include "../inc/cc.h" void * xmalloc(size_t size) { void *p = malloc(size); if (!p) die("out of memory"); return p; }