aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2021-12-17 11:10:31 +0200
committerArnold D. Robbins <arnold@skeeve.com>2021-12-17 11:10:31 +0200
commitaa58c798bed920b6051c4459488195df2b76aaf4 (patch)
tree0f19662dafc6a13909cc1806a74f65b200efe918 /main.c
parent71258c13172b489139f1a1d339bf140af6c1ebf1 (diff)
parentf285f960bdfb5acb50a8ec7ed4b98f17d0bd624a (diff)
downloadegawk-aa58c798bed920b6051c4459488195df2b76aaf4.tar.gz
egawk-aa58c798bed920b6051c4459488195df2b76aaf4.tar.bz2
egawk-aa58c798bed920b6051c4459488195df2b76aaf4.zip
Merge branch 'gawk-5.1-stable'
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.c b/main.c
index 2ca0dc85..c88c23a6 100644
--- a/main.c
+++ b/main.c
@@ -73,7 +73,8 @@ static const char *platform_name();
/* These nodes store all the special variables AWK uses */
NODE *ARGC_node, *ARGIND_node, *ARGV_node, *BINMODE_node, *CONVFMT_node;
-NODE *ENVIRON_node, *ERRNO_node, *FIELDWIDTHS_node, *FILENAME_node;
+static NODE *ENVIRON_node;
+NODE *ERRNO_node, *FIELDWIDTHS_node, *FILENAME_node;
NODE *FNR_node, *FPAT_node, *FS_node, *IGNORECASE_node, *LINT_node;
NODE *NF_node, *NR_node, *OFMT_node, *OFS_node, *ORS_node, *PROCINFO_node;
NODE *RLENGTH_node, *RSTART_node, *RS_node, *RT_node, *SUBSEP_node;