diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-12-17 11:14:00 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-12-17 11:14:00 +0200 |
commit | b52237743955ece2c890aeb0959c03e70e3175e3 (patch) | |
tree | 29618b84f7089d1caebbe1b9a91f5d83b1e4ea16 /str_array.c | |
parent | 03183d8f307ee708fe57de2d9d923c3885f80bc8 (diff) | |
parent | aa58c798bed920b6051c4459488195df2b76aaf4 (diff) | |
download | egawk-b52237743955ece2c890aeb0959c03e70e3175e3.tar.gz egawk-b52237743955ece2c890aeb0959c03e70e3175e3.tar.bz2 egawk-b52237743955ece2c890aeb0959c03e70e3175e3.zip |
Merge branch 'master' into feature/readall
Diffstat (limited to 'str_array.c')
-rw-r--r-- | str_array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/str_array.c b/str_array.c index ba8c2148..08704312 100644 --- a/str_array.c +++ b/str_array.c @@ -76,7 +76,7 @@ static NODE **env_store(NODE *symbol, NODE *subs); static NODE **env_clear(NODE *symbol, NODE *subs); /* special case for ENVIRON */ -const array_funcs_t env_array_func = { +static const array_funcs_t env_array_func = { "env", str_array_init, (afunc_t) 0, |