git: 9front

ref: 4a1d005a9a2318b99df31c92b2c8bcd11cffdb5a
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);
}