DEBSOURCES
Skip Quicknav
sources / drawterm-9front / 0~git20220608.bee4db6-3 / libc / mallocz.c
12345678910111213
#include <u.h> #include <libc.h> void* mallocz(ulong n, int clr) { void *v; v = malloc(n); if(v && clr) memset(v, 0, n); return v; }