about summary refs log tree commit diff
path: root/Src/Modules/param_private.c
diff options
context:
space:
mode:
authorJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2016-02-03 01:24:56 +0900
committerJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2016-02-03 01:25:33 +0900
commita4020e10a33f3f78681a2e18fb7add56338d4e81 (patch)
tree8a189e89ca1be9c11bb7c444c57c03c35b24e7de /Src/Modules/param_private.c
parent69acac38c90559eb2138d3fd7cd852ff73a77fdd (diff)
downloadzsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.tar.gz
zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.tar.xz
zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.zip
37868: add 'static' to file local variables
Diffstat (limited to 'Src/Modules/param_private.c')
-rw-r--r--Src/Modules/param_private.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Src/Modules/param_private.c b/Src/Modules/param_private.c
index 2f51cb099..86416c5c5 100644
--- a/Src/Modules/param_private.c
+++ b/Src/Modules/param_private.c
@@ -42,19 +42,19 @@ struct gsu_closure {
     void *g;
 };
 
-const struct gsu_scalar scalar_private_gsu =
+static const struct gsu_scalar scalar_private_gsu =
 { pps_getfn, pps_setfn, pps_unsetfn };
 
-const struct gsu_integer integer_private_gsu =
+static const struct gsu_integer integer_private_gsu =
 { ppi_getfn, ppi_setfn, ppi_unsetfn };
 
-const struct gsu_float float_private_gsu =
+static const struct gsu_float float_private_gsu =
 { ppf_getfn, ppf_setfn, ppf_unsetfn };
 
-const struct gsu_array array_private_gsu =
+static const struct gsu_array array_private_gsu =
 { ppa_getfn, ppa_setfn, ppa_unsetfn };
 
-const struct gsu_hash hash_private_gsu =
+static const struct gsu_hash hash_private_gsu =
 { pph_getfn, pph_setfn, pph_unsetfn };
 
 /*