ref: 6661936e28c85c94190611858cf68290998061e8 dir: /sys/src/libaml/amlalloc.c/
#include <u.h> #include <libc.h> #include <aml.h> void* amlalloc(int n) { return mallocz(n, 1); } void amlfree(void *p) { free(p); }