diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-06-08 00:22:23 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-06-08 00:22:23 +0000 |
commit | 60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca (patch) | |
tree | 29d9258b64874c6c9838757a9c67ef62a6a0868c /intl | |
parent | 2e09a79ada1f6d92809a037d41895e3d9302ad59 (diff) | |
download | glibc-60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca.tar.gz glibc-60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca.tar.xz glibc-60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca.zip |
Use (void) in no-arguments function definitions.
Diffstat (limited to 'intl')
-rw-r--r-- | intl/finddomain.c | 2 | ||||
-rw-r--r-- | intl/localealias.c | 2 | ||||
-rw-r--r-- | intl/plural-exp.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/intl/finddomain.c b/intl/finddomain.c index b07d890050..5d4c238d20 100644 --- a/intl/finddomain.c +++ b/intl/finddomain.c @@ -170,7 +170,7 @@ out: /* This is called from iconv/gconv_db.c's free_mem, as locales must be freed before freeing gconv steps arrays. */ void __libc_freeres_fn_section -_nl_finddomain_subfreeres () +_nl_finddomain_subfreeres (void) { struct loaded_l10nfile *runp = _nl_loaded_domains; diff --git a/intl/localealias.c b/intl/localealias.c index 478e5c45a6..ee71eaf45d 100644 --- a/intl/localealias.c +++ b/intl/localealias.c @@ -362,7 +362,7 @@ out: static int -extend_alias_table () +extend_alias_table (void) { size_t new_size; struct alias_map *new_map; diff --git a/intl/plural-exp.c b/intl/plural-exp.c index 156a181650..a2d23efc93 100644 --- a/intl/plural-exp.c +++ b/intl/plural-exp.c @@ -72,7 +72,7 @@ static struct expression plone; struct expression GERMANIC_PLURAL; static void -init_germanic_plural () +init_germanic_plural (void) { if (plone.val.num == 0) { |