ref: 29b1f55e7390043efef033578083694fb85dbe99 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); }