shithub: tlsclient

ref: bf70c2f9d9e10fa5eb226ace7dbbfb998dd7c3be
dir: /libc/mallocz.c/

View raw version
#include <u.h>
#include <libc.h>

void*
mallocz(ulong n, int clr)
{
	void *v;

	v = malloc(n);
	if(v && clr)
		memset(v, 0, n);
	return v;
}