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 /posix | |
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 'posix')
-rw-r--r-- | posix/regex_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/regex_internal.h b/posix/regex_internal.h index 1a161293fd..6dfdef6639 100644 --- a/posix/regex_internal.h +++ b/posix/regex_internal.h @@ -1,5 +1,5 @@ /* Extended regular expression matching and search library. - Copyright (C) 2002-2005, 2007, 2008, 2011 Free Software Foundation, Inc. + Copyright (C) 2002-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>. @@ -73,7 +73,7 @@ # ifdef _LIBC # undef gettext # define gettext(msgid) \ - INTUSE(__dcgettext) (_libc_intl_domainname, msgid, LC_MESSAGES) + __dcgettext (_libc_intl_domainname, msgid, LC_MESSAGES) # endif #else # define gettext(msgid) (msgid) |