ref: 77e0feb67c2a5cf37d23810504a28fdc3c7ad380
dir: /sys/src/9/zynq/uncached.h/
#define free ucfree #define malloc myucalloc #define mallocz ucallocz #define smalloc myucalloc #define xspanalloc ucallocalign #define allocb ucallocb #define iallocb uciallocb #define freeb ucfreeb static void * ucallocz(uint n, int) { char *p = ucalloc(n); if (p) memset(p, 0, n); else panic("ucalloc: out of memory"); return p; } static void * myucalloc(uint n) { return ucallocz(n, 1); }