ref: 40d81ea294aeba6c21e5db628086ef9b49d002fe dir: /sys/src/cmd/disk/kfs/ialloc.c/
#include "all.h" void *ialloc(ulong n){ void *p; if(p = malloc(n)) memset(p, 0, n); return p; }