From cb40cceb5d6cbc8115b028e2855c0c0827fb71c1 Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 11 May 2025 10:27:55 +0200 Subject: explicit function call recursion limit --- repl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'repl.c') diff --git a/repl.c b/repl.c index dcdb381..bf1e41e 100644 --- a/repl.c +++ b/repl.c @@ -39,7 +39,7 @@ help(void) int main(int argc, char **argv) { - PezContext *cx = pez_new(NULL, NULL, 32*1024 /* 32KiB stack */); + PezContext *cx = pez_new(NULL, NULL, 8*1024 /* 8KiB stack */); FILE *fp = NULL; int i, ret = 0; -- cgit v1.2.3