code: 9ferno

ref: b2509ed78c437b8f49637c39279b8fb0a417e826
dir: /libaml/amlalloc.c/

View raw version
#include <u.h>
#include <libc.h>
#include <aml.h>

void*
amlalloc(int n)
{
	return mallocz(n, 1);
}

void
amlfree(void *p)
{
	free(p);
}