ref: 9ac21139bed319895adeb5e5c003cc6a12ca2e36 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; }