diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-05-23 22:38:10 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-05-24 23:08:18 +0200 |
commit | 56d25bb888ac7ba977091c2b48401b0a443fc94a (patch) | |
tree | 0259bcfd200f965f77ca2c0d2afb79e6b0b6308b /argp | |
parent | d18ea0c5e669dd48ccceccfc90ff458dc333a81f (diff) | |
download | glibc-56d25bb888ac7ba977091c2b48401b0a443fc94a.tar glibc-56d25bb888ac7ba977091c2b48401b0a443fc94a.tar.gz glibc-56d25bb888ac7ba977091c2b48401b0a443fc94a.tar.bz2 glibc-56d25bb888ac7ba977091c2b48401b0a443fc94a.zip |
Remove use of INTDEF/INTUSE in intl
Diffstat (limited to 'argp')
-rw-r--r-- | argp/argp-help.c | 4 | ||||
-rw-r--r-- | argp/argp-parse.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/argp/argp-help.c b/argp/argp-help.c index 645006cdfc..0af680530b 100644 --- a/argp/argp-help.c +++ b/argp/argp-help.c @@ -1,5 +1,5 @@ /* Hierarchial argument parsing help output - Copyright (C) 1995-2007, 2011 Free Software Foundation, Inc. + Copyright (C) 1995-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader <miles@gnu.ai.mit.edu>. @@ -59,7 +59,7 @@ char *alloca (); # ifdef _LIBC # undef dgettext # define dgettext(domain, msgid) \ - INTUSE(__dcgettext) (domain, msgid, LC_MESSAGES) + __dcgettext (domain, msgid, LC_MESSAGES) # endif # else # define dgettext(domain, msgid) (msgid) diff --git a/argp/argp-parse.c b/argp/argp-parse.c index 5a2124ec73..9ac1a1720d 100644 --- a/argp/argp-parse.c +++ b/argp/argp-parse.c @@ -1,5 +1,5 @@ /* Hierarchial argument parsing, layered over getopt - Copyright (C) 1995-2000, 2002, 2003, 2004, 2010 Free Software Foundation, Inc. + Copyright (C) 1995-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader <miles@gnu.ai.mit.edu>. @@ -51,7 +51,7 @@ char *alloca (); # ifdef _LIBC # undef dgettext # define dgettext(domain, msgid) \ - INTUSE(__dcgettext) (domain, msgid, LC_MESSAGES) + __dcgettext (domain, msgid, LC_MESSAGES) # endif # else # define dgettext(domain, msgid) (msgid) |