shithub: scc

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