ref: 7768cd9a6ec11b04eb2ff6336018cd22fa79f5ea
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); }