ref: 98540c6b29cdeb659849f5b61e0b19c242b94365 dir: /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); }