venti: fix memory layers

This commit is contained in:
Noam Preil 2021-07-21 05:06:05 +00:00
parent 82c7251dc3
commit 2eadf1fa17
14 changed files with 73 additions and 131 deletions

View file

@ -207,10 +207,10 @@ int vtscorefmt(Fmt*);
* error-checking malloc et al.
*/
void vtfree(void *);
void* vtmalloc(int);
void* vtmallocz(int);
void* vtrealloc(void *p, int);
void* vtbrk(int n);
void* vtmalloc(ulong);
void* vtmallocz(ulong);
void* vtrealloc(void *p, ulong);
void* vtbrk(ulong);
char* vtstrdup(char *);
/*