1 2 3 4 5 6 7 8 9
#include "all.h" void *ialloc(ulong n){ void *p; if(p = malloc(n)) memset(p, 0, n); return p; }