From: Bruno Haible Date: Fri, 30 Nov 2001 13:01:48 +0000 (+0000) Subject: Fix a warning that arose due to glibc merging. X-Git-Tag: v0.11~251 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd737ee7e18b4c1c8282a2eb2d0ed56cf975402e;p=thirdparty%2Fgettext.git Fix a warning that arose due to glibc merging. --- diff --git a/intl/ChangeLog b/intl/ChangeLog index 64229a3cb..ba3810d6d 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,3 +1,7 @@ +2001-11-30 Bruno Haible + + * plural-exp.h (plural_eval): Add back declaration. + 2001-11-29 Bruno Haible * gettextP.h (_nl_locale_name): Don't declare inside glibc. diff --git a/intl/plural-exp.h b/intl/plural-exp.h index 1bfec819c..6a4bba019 100644 --- a/intl/plural-exp.h +++ b/intl/plural-exp.h @@ -114,4 +114,9 @@ extern void EXTRACT_PLURAL_EXPRESSION PARAMS ((const char *nullentry, unsigned long int *npluralsp)) internal_function; +#if !defined (_LIBC) && !defined (IN_LIBINTL) +extern unsigned long int plural_eval PARAMS ((struct expression *pexp, + unsigned long int n)); +#endif + #endif /* _PLURAL_EXP_H */