mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-28 05:00:59 +01:00
37868: add 'static' to file local variables
This commit is contained in:
parent
69acac38c9
commit
a4020e10a3
16 changed files with 34 additions and 27 deletions
|
|
@ -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 };
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue