#include #include #include void* amlalloc(int n) { return mallocz(n, 1); } void amlfree(void *p) { free(p); }