blob: c1963ae460143a5d011fecd160e0c608531a06fe (
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
|
--- 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);
|