summaryrefslogtreecommitdiff
path: root/fc-cat
diff options
context:
space:
mode:
authorAkira TAGOH <akira@tagoh.org>2018-03-15 12:54:02 +0900
committerAkira TAGOH <akira@tagoh.org>2018-03-15 12:54:02 +0900
commit2938e4d72da40f6bb0d22086c519a9852a820f40 (patch)
treeab16ffbe49cfcbdd9968af414a57655724dc158c /fc-cat
parent98eaef69af1350e459bf9c175476d3b772968874 (diff)
call setlocale
Diffstat (limited to 'fc-cat')
-rw-r--r--fc-cat/fc-cat.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fc-cat/fc-cat.c b/fc-cat/fc-cat.c
index dfe30d76..69611bcc 100644
--- a/fc-cat/fc-cat.c
+++ b/fc-cat/fc-cat.c
@@ -40,6 +40,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
+#include <locale.h>
#ifdef ENABLE_NLS
#include <libintl.h>
@@ -271,6 +272,7 @@ main (int argc, char **argv)
#if HAVE_GETOPT_LONG || HAVE_GETOPT
int c;
+ setlocale (LC_ALL, "");
#if HAVE_GETOPT_LONG
while ((c = getopt_long (argc, argv, "Vvrh", longopts, NULL)) != -1)
#else