diff options
author | Marvin Borner | 2023-02-20 16:17:31 +0100 |
---|---|---|
committer | Marvin Borner | 2023-02-20 16:17:31 +0100 |
commit | a162fdc74abf0686ec06e65e06d67a8ce5c13b30 (patch) | |
tree | b844718a0befa9853c8c12255933f0ed9308f69d /src/parse.c | |
parent | c741632fbe41c8fcb0b2ea0c2a5b08e778768a7d (diff) |
Kinda working but slow
Diffstat (limited to 'src/parse.c')
-rw-r--r-- | src/parse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parse.c b/src/parse.c index 33ca556..9408bde 100644 --- a/src/parse.c +++ b/src/parse.c @@ -5,6 +5,7 @@ #include <stdio.h> #include <parse.h> +#include <gc.h> #include <term.h> static struct term *rec(const char **term) @@ -35,7 +36,7 @@ static struct term *rec(const char **term) struct term *parse(const char *term) { - struct term *parsed = rec(&term); + struct term *parsed = gc_make_static(&gc, rec(&term)); to_barendregt(parsed); return parsed; } |