aboutsummaryrefslogtreecommitdiff
path: root/include/parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/parse.h')
-rw-r--r--include/parse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/parse.h b/include/parse.h
index ff5e3f1..21584cc 100644
--- a/include/parse.h
+++ b/include/parse.h
@@ -19,6 +19,7 @@ struct ast_param {
};
struct ast_block {
+ const char *label;
struct ast_cmd *cmds;
int cmdsz, cmdlen;
};
@@ -92,7 +93,6 @@ struct ast_if {
};
struct ast_for {
- const char *label;
struct ast_assign *init, *action;
struct ast_expr cond;
struct ast_block blk;