diff options
author | Jim Meyering <jim@meyering.net> | 2002-11-23 15:40:40 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-11-23 15:40:40 +0000 |
commit | 70212bf28bd02ce46e7392664df89c58404a0f81 (patch) | |
tree | 335177841bdfdd15bd13d3a403dc91c1a0342990 /lib | |
parent | cc7aeee22ce08ea5560cbe147d52b1ba1c0f28b8 (diff) | |
download | coreutils-70212bf28bd02ce46e7392664df89c58404a0f81.tar.xz |
Include gettext.h instead of <libintl.h>.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rpmatch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rpmatch.c b/lib/rpmatch.c index 0988f07d0..02c2abdb8 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 <limits.h> # endif # include <regex.h> -# include <libintl.h> -# define _(Text) gettext (Text) +# include "gettext.h" +# define _(msgid) gettext (msgid) static int try (const char *response, const char *pattern, const int match, |