diff options
Diffstat (limited to 'locale/programs/locale.c')
-rw-r--r-- | locale/programs/locale.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/locale/programs/locale.c b/locale/programs/locale.c index 4d63441cea..823be8d8fe 100644 --- a/locale/programs/locale.c +++ b/locale/programs/locale.c @@ -501,6 +501,8 @@ show_locale_vars (void) const char *lcall = getenv ("LC_ALL"); const char *lang = getenv ("LANG") ? : "POSIX"; + auto void get_source (const char *name); + void get_source (const char *name) { char *val = getenv (name); @@ -530,6 +532,8 @@ show_info (const char *name) { size_t cat_no; + auto void print_item (struct cat_item *item); + void print_item (struct cat_item *item) { switch (item->value_type) @@ -634,7 +638,7 @@ show_info (const char *name) information is available in a multibyte string. */ default: break; - + } } |