diff options
author | Bruno Haible <bruno@clisp.org> | 2002-04-29 17:34:18 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:07:54 +0200 |
commit | 93e19a8b5ef634e1d3de523a63e47adb3cefab35 (patch) | |
tree | fd47896852f3ab84e0e341679cf215abac37786b /intl/dcngettext.c | |
parent | 5e6d385b78c3424c3c7387088ad81b9db2c12774 (diff) | |
download | external_gettext-93e19a8b5ef634e1d3de523a63e47adb3cefab35.zip external_gettext-93e19a8b5ef634e1d3de523a63e47adb3cefab35.tar.gz external_gettext-93e19a8b5ef634e1d3de523a63e47adb3cefab35.tar.bz2 |
Prefix all libintl specific functions with libintl_ instead of suffixing them
with __. Use preprocessor-level redirection in libgnuintl.h.
Diffstat (limited to 'intl/dcngettext.c')
-rw-r--r-- | intl/dcngettext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/intl/dcngettext.c b/intl/dcngettext.c index d31ff9b..17d9ce3 100644 --- a/intl/dcngettext.c +++ b/intl/dcngettext.c @@ -37,8 +37,8 @@ # define DCNGETTEXT __dcngettext # define DCIGETTEXT __dcigettext #else -# define DCNGETTEXT dcngettext__ -# define DCIGETTEXT dcigettext__ +# define DCNGETTEXT libintl_dcngettext +# define DCIGETTEXT libintl_dcigettext #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY |