shithub: riscv

ref: 019a935f6b8961b8a8fab3916f1e529c36f261e2
dir: /sys/src/ape/lib/ap/gen/calloc.c/

View raw version
#include <stdlib.h>
#include <string.h>

void *
calloc(size_t n, size_t s)
{
	void *v;

	if(n > 1 && ((size_t)-1)/n < s)
		return 0;
	n *= s;
	if(v = malloc(n))
		memset(v, 0, n);
	return v;
}