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