aboutsummaryrefslogtreecommitdiff
path: root/src/mem.hff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem.hff')
-rw-r--r--src/mem.hff2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem.hff b/src/mem.hff
index 3f3b8c9..f3689ac 100644
--- a/src/mem.hff
+++ b/src/mem.hff
@@ -1,7 +1,7 @@
import "libc.hff";
defmacro ALIGNUP(x,a) [ (((x) + ((a) - 1)) & -(a)) ]
-def ARENA_SIZE = 4 * 1024;
+def ARENA_SIZE = 4z * 1024;
extern fn xmalloc(n usize) *void;
extern fn xcalloc(n usize, m usize) *void;
extern fn xrealloc(p *void, n usize) *void;