ref: 37ef30916cf30b47f92cf8f815caa23424263a5a
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); }