summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-11-23 15:40:40 +0000
committerJim Meyering <jim@meyering.net>2002-11-23 15:40:40 +0000
commit70212bf28bd02ce46e7392664df89c58404a0f81 (patch)
tree335177841bdfdd15bd13d3a403dc91c1a0342990 /lib
parentcc7aeee22ce08ea5560cbe147d52b1ba1c0f28b8 (diff)
downloadcoreutils-70212bf28bd02ce46e7392664df89c58404a0f81.tar.xz
Include gettext.h instead of <libintl.h>.
Diffstat (limited to 'lib')
-rw-r--r--lib/rpmatch.c6
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,