diff options
Diffstat (limited to 'intl')
-rw-r--r-- | intl/Versions | 3 | ||||
-rw-r--r-- | intl/dcngettext.c | 1 | ||||
-rw-r--r-- | intl/dngettext.c | 2 | ||||
-rw-r--r-- | intl/ngettext.c | 2 |
4 files changed, 2 insertions, 6 deletions
diff --git a/intl/Versions b/intl/Versions index 4571faf6e4..d76982dbe3 100644 --- a/intl/Versions +++ b/intl/Versions @@ -19,9 +19,6 @@ libc { textdomain; } GLIBC_2.2 { - # functions used in inline functions or macros - __dcngettext; - # b* bind_textdomain_codeset; diff --git a/intl/dcngettext.c b/intl/dcngettext.c index 6d360a109a..72ffa77a02 100644 --- a/intl/dcngettext.c +++ b/intl/dcngettext.c @@ -57,6 +57,5 @@ DCNGETTEXT (domainname, msgid1, msgid2, n, category) #ifdef _LIBC /* Alias for function name in GNU C Library. */ -INTDEF(__dcngettext) weak_alias (__dcngettext, dcngettext); #endif diff --git a/intl/dngettext.c b/intl/dngettext.c index 2f24f9c1c9..c315d7eb10 100644 --- a/intl/dngettext.c +++ b/intl/dngettext.c @@ -38,7 +38,7 @@ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DNGETTEXT __dngettext -# define DCNGETTEXT INTUSE(__dcngettext) +# define DCNGETTEXT __dcngettext #else # define DNGETTEXT dngettext__ # define DCNGETTEXT dcngettext__ diff --git a/intl/ngettext.c b/intl/ngettext.c index 7843d75711..e050924495 100644 --- a/intl/ngettext.c +++ b/intl/ngettext.c @@ -45,7 +45,7 @@ prefix. So we have to make a difference here. */ #ifdef _LIBC # define NGETTEXT __ngettext -# define DCNGETTEXT INTUSE(__dcngettext) +# define DCNGETTEXT __dcngettext #else # define NGETTEXT ngettext__ # define DCNGETTEXT dcngettext__ |