git: 9front

ref: c913bf4c36df67a1710c9840fc388892b6763fe2
dir: /sys/src/cmd/unix/drawterm/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;
}