ref: 92ce2cfea6a6bff967cc6f3f9b71b74df2305f6a 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); }