about summary refs log tree commit diff
path: root/intl/textdomain.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-03-27 17:27:47 +0000
committerUlrich Drepper <drepper@redhat.com>1998-03-27 17:27:47 +0000
commitf38931a9f060a9ecb2ad544b1c2e2c80060f6724 (patch)
treedc6eafdd66d5b9869b468c3a01944b291600e72a /intl/textdomain.c
parent528c1f1cb488deb66d80aba839f150450c256c12 (diff)
downloadglibc-f38931a9f060a9ecb2ad544b1c2e2c80060f6724.tar.gz
glibc-f38931a9f060a9ecb2ad544b1c2e2c80060f6724.tar.xz
glibc-f38931a9f060a9ecb2ad544b1c2e2c80060f6724.zip
Update.
1998-03-22  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* locales/ru_RU: Abbreviations must end with a consonant.  Fix for
	Tuesday by Ilya Ovchinnikov <ilya@taspd13a.npi.msu.su>. [PR libc/517]
Diffstat (limited to 'intl/textdomain.c')
-rw-r--r--intl/textdomain.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/intl/textdomain.c b/intl/textdomain.c
index 116419dd12..5dd4003a8e 100644
--- a/intl/textdomain.c
+++ b/intl/textdomain.c
@@ -1,5 +1,5 @@
 /* Implementation of the textdomain(3) function.
-   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
 
    This file is part of the GNU C Library.  Its master source is NOT part of
    the C library, however.  The master source lives in /gd/gnu/lib.
@@ -57,7 +57,9 @@ extern const char *_nl_current_default_domain;
    prefix.  So we have to make a difference here.  */
 #ifdef _LIBC
 # define TEXTDOMAIN __textdomain
-# define strdup(str) __strdup (str)
+# ifndef strdup
+#  define strdup(str) __strdup (str)
+# endif
 #else
 # define TEXTDOMAIN textdomain__
 #endif