shithub: riscv

ref: a3b35c224b41eecb40e0a22cf76c41ecfa679030
dir: /sys/src/cmd/disk/kfs/ialloc.c/

View raw version
#include "all.h"

void *ialloc(ulong n){
	void *p;

	if(p = malloc(n))
		memset(p, 0, n);
	return p;
}