]> git.lizzy.rs Git - plan9front.git/blob - sys/src/libaml/amlalloc.c
7c: fix wrong type on OASxxx operations
[plan9front.git] / sys / src / libaml / amlalloc.c
1 #include <u.h>
2 #include <libc.h>
3 #include <aml.h>
4
5 void*
6 amlalloc(int n)
7 {
8         return mallocz(n, 1);
9 }
10
11 void
12 amlfree(void *p)
13 {
14         free(p);
15 }