ref: ac2335bcf6ddc65ff3ed64e87b0f3d02a7fad6db
dir: /lib/xmalloc.c/
/* See LICENSE file for copyright and license details. */
#include <stdlib.h>
#include "../inc/cc.h"
void *
xmalloc(size_t size)
{
void *p = malloc(size);
if (!p)
die("out of memory");
return p;
}