diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-12-17 11:09:31 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-12-17 11:09:31 +0200 |
commit | f285f960bdfb5acb50a8ec7ed4b98f17d0bd624a (patch) | |
tree | 4832733b3efc81198c36e893e440ddc41a1b4604 /main.c | |
parent | b1cfda80b2c341e8b8d26f1b693c6c2603c90741 (diff) | |
download | egawk-f285f960bdfb5acb50a8ec7ed4b98f17d0bd624a.tar.gz egawk-f285f960bdfb5acb50a8ec7ed4b98f17d0bd624a.tar.bz2 egawk-f285f960bdfb5acb50a8ec7ed4b98f17d0bd624a.zip |
Make a number of variables and functions be static.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |