ref: 6d5cccdbfa78d757b07efa64195f49a5db7e46e1
dir: /src/libscc/xmalloc.c/
static char sccsid[] = "@(#) ./lib/scc/xmalloc.c"; #include <stdlib.h> #include <scc/scc.h> void * xmalloc(size_t size) { void *p = malloc(size); if (!p) die("out of memory"); return p; }