summaryrefslogtreecommitdiff
blob: d758d03ff89b343bd90a10d7ec571fd32dca3c9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 src/realpath.c |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/src/realpath.c b/src/realpath.c
index 76fc909..e2cf86f 100644
--- a/src/realpath.c
+++ b/src/realpath.c
@@ -23,10 +23,9 @@
 #include <errno.h>
 #include <getopt.h>
 #include <stdarg.h>
-#include <libintl.h>
 #include <locale.h>
 
-#define _(String) gettext (String)
+#define _(String) (String)
 
 static char *stripdir(char * dir, char *buf, int maxlen);
 
@@ -116,9 +115,6 @@ int main(int argc, char **argv) {
 
 	myname = ( p = strchr(argv[0], '/') ) ? p+1 : argv[0];
 
-	setlocale(LC_ALL, "");
-	bindtextdomain(PACKAGE, LOCALEDIR);
-	textdomain(PACKAGE);
 
 
 	parse_options(argc, argv);