summaryrefslogtreecommitdiffstats
path: root/intl
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2002-01-02 20:30:32 +0000
committerBruno Haible <bruno@clisp.org>2009-06-22 00:30:39 +0200
commitf4d7aa9cebbf41970dc68360c9e9a8e73dc3cb62 (patch)
treece3880662d8a7a8c38887c81352e1d7a1307f483 /intl
parentf865f636d500cf94d84b2e3b2d0194c73f5a7838 (diff)
downloadexternal_gettext-f4d7aa9cebbf41970dc68360c9e9a8e73dc3cb62.zip
external_gettext-f4d7aa9cebbf41970dc68360c9e9a8e73dc3cb62.tar.gz
external_gettext-f4d7aa9cebbf41970dc68360c9e9a8e73dc3cb62.tar.bz2
Avoid error with HP-UX cc (K&R).
Diffstat (limited to 'intl')
-rw-r--r--intl/ChangeLog5
-rw-r--r--intl/loadmsgcat.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/intl/ChangeLog b/intl/ChangeLog
index b675d1e..8b282c1 100644
--- a/intl/ChangeLog
+++ b/intl/ChangeLog
@@ -1,5 +1,10 @@
2002-01-02 Bruno Haible <bruno@clisp.org>
+ * loadmsgcat.c (_nl_init_domain_conv): Convert extern declaration to
+ K&R syntax.
+
+2002-01-02 Bruno Haible <bruno@clisp.org>
+
* plural.y: Fix %expect count.
2001-12-23 Bruno Haible <bruno@clisp.org>
diff --git a/intl/loadmsgcat.c b/intl/loadmsgcat.c
index 20aebdd..76130ed 100644
--- a/intl/loadmsgcat.c
+++ b/intl/loadmsgcat.c
@@ -195,7 +195,7 @@ _nl_init_domain_conv (domain_file, domain, domainbinding)
outcharset = (*_nl_current[LC_CTYPE])->values[_NL_ITEM_INDEX (CODESET)].string;
# else
# if HAVE_ICONV
- extern const char *locale_charset (void);
+ extern const char *locale_charset PARAMS ((void));
outcharset = locale_charset ();
# endif
# endif