code: 9ferno

ref: 04b419c602ed75deaed50b89fa164660fd679e8f
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);
}