shithub: scc

ref: 9e7035dc20b95a41672e56d086569988c8130975
dir: /wrapper.c/

View raw version

#include <stdlib.h>
#include <string.h>

#include <stdint.h>

#include "cc1.h"


static void
out_of_memory(void)
{
	/* TODO: deal with out of memory errors */
	error("out of memory");
}

void *
xmalloc(size_t size)
{
	register void *p = malloc(size);

	if (!p)
		out_of_memory();
	return p;
}

void *
xcalloc(size_t nmemb, size_t size)
{
	register size_t nbytes = nmemb * size;
	register void *p = xmalloc(nbytes);

	return memset(p, nbytes, 0);
}

char *
xstrdup(const char *s)
{
	register size_t len = strlen(s) + 1;
	register char *p = xmalloc(len);

	return memcpy(p, s, len);
}

void *
xrealloc(void *buff, register size_t size)
{
	register void *p = realloc(buff, size);

	if (!p)
		out_of_memory();
	return p;
}