From: Jim Meyering Date: Sat, 23 Nov 2002 15:40:40 +0000 (+0000) Subject: Include gettext.h instead of . X-Git-Tag: v4.5.4~156 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70212bf28bd02ce46e7392664df89c58404a0f81;p=thirdparty%2Fcoreutils.git Include gettext.h instead of . --- diff --git a/lib/rpmatch.c b/lib/rpmatch.c index 0988f07d04..02c2abdb88 100644 --- a/lib/rpmatch.c +++ b/lib/rpmatch.c @@ -1,6 +1,6 @@ /* Determine whether string value is affirmation or negative response according to current locale's data. - Copyright (C) 1996, 1998, 2000 Free Software Foundation, Inc. + Copyright (C) 1996, 1998, 2000, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -35,8 +35,8 @@ # include # endif # include -# include -# define _(Text) gettext (Text) +# include "gettext.h" +# define _(msgid) gettext (msgid) static int try (const char *response, const char *pattern, const int match,