shithub: scc

ref: ee42812835eb35735b73cc2f4588a8c25326355b
dir: /lib/xcalloc.c/

View raw version

#include <stdlib.h>
#include <cc.h>

void *
xcalloc(size_t n, size_t size)
{
	register void *p = calloc(n, size);

	if (!p)
		die("out of memory");
	return p;
}