ref: a43c1e6fab4d75c8d173a482ee8f4aa04de151c0
dir: /kern/smalloc.c/
#include "u.h" #include "lib.h" #include "dat.h" #include "fns.h" #include "error.h" void* smalloc(ulong n) { return mallocz(n, 1); } void* malloc(ulong n) { return mallocz(n, 1); }