diff options
| author | 2025-05-11 10:27:55 +0200 | |
|---|---|---|
| committer | 2025-05-11 10:27:55 +0200 | |
| commit | cb40cceb5d6cbc8115b028e2855c0c0827fb71c1 (patch) | |
| tree | 86255afee1c1e7f8edd600f87c5e02cbb742b0ea /repl.c | |
| parent | 24fe6921b63cc2b2145547f37218e630682b0fe6 (diff) | |
explicit function call recursion limit
Diffstat (limited to 'repl.c')
| -rw-r--r-- | repl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |