diff options
author | Noam Preil <noam@pixelhero.dev> | 2021-07-21 05:06:05 +0000 |
---|---|---|
committer | Noam Preil <noam@pixelhero.dev> | 2021-07-21 05:06:05 +0000 |
commit | 2eadf1fa1703e5da4a98ba9c1a2bdc23bd140d8c (patch) | |
tree | ed135a7c6402ac77ddc7dc482050d0bc3183b1f1 /sys/include | |
parent | 82c7251dc3ff57ae97c0ce24b72e2e2ae5f6945b (diff) |
venti: fix memory layers
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/venti.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/include/venti.h b/sys/include/venti.h index e4677c1a3..dff553b4c 100644 --- a/sys/include/venti.h +++ b/sys/include/venti.h @@ -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 *); /* |