diff options
author | Werner Koch <[email protected]> | 2003-10-25 16:34:36 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2003-10-25 16:34:36 +0000 |
commit | d30da9ebdc822dc1e7349715dedf3d0d1783cfb7 (patch) | |
tree | 7d316699432d2697a20655288f741d81a046da0a /intl/gettext.c | |
parent | Gettexized (diff) | |
download | gnupg-d30da9ebdc822dc1e7349715dedf3d0d1783cfb7.tar.gz gnupg-d30da9ebdc822dc1e7349715dedf3d0d1783cfb7.zip |
Updated to 0.12.1
Diffstat (limited to 'intl/gettext.c')
-rw-r--r-- | intl/gettext.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/intl/gettext.c b/intl/gettext.c index 22a6c2453..43d689f55 100644 --- a/intl/gettext.c +++ b/intl/gettext.c @@ -1,5 +1,5 @@ /* Implementation of gettext(3) function. - Copyright (C) 1995, 1997, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1995, 1997, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published @@ -42,10 +42,10 @@ prefix. So we have to make a difference here. */ #ifdef _LIBC # define GETTEXT __gettext -# define DCGETTEXT __dcgettext +# define DCGETTEXT INTUSE(__dcgettext) #else -# define GETTEXT gettext__ -# define DCGETTEXT dcgettext__ +# define GETTEXT libintl_gettext +# define DCGETTEXT libintl_dcgettext #endif /* Look up MSGID in the current default message catalog for the current |