git: 9front

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

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

void *
calloc(size_t nmemb, size_t size)
{
	void *mp;

	nmemb = nmemb*size;
	if(mp = malloc(nmemb))
		memset(mp, 0, nmemb);
	return(mp);
}