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