author | Alan Dipert
<alan@dipert.org> 2024-01-07 06:25:44 UTC |
committer | Alan Dipert
<alan@dipert.org> 2024-01-07 06:25:44 UTC |
parent | bc59cf4b53ba8605c651d2b2cfe7d1c90641a1c0 |
ast.h | +1 | -0 |
diff --git a/ast.h b/ast.h index f45ea76..0ef5be3 100644 --- a/ast.h +++ b/ast.h @@ -63,4 +63,5 @@ struct node_tag* ast_make_print(struct node_tag* expr); struct node_tag* ast_make_if(struct node_tag* pred, struct node_tag* stmt); struct node_tag* ast_make_id(char *name); struct node_tag* ast_make_number_integer(int val); + extern struct node_tag* ast_last_numbered_line;