summaryrefslogtreecommitdiffstats
path: root/osdep/getch2.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/getch2.c')
-rw-r--r--osdep/getch2.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/osdep/getch2.c b/osdep/getch2.c
index f0aa19a2cc..cd8a198737 100644
--- a/osdep/getch2.c
+++ b/osdep/getch2.c
@@ -50,11 +50,6 @@
#endif
#endif
-#if defined(HAVE_LANGINFO) && defined(CONFIG_ICONV)
-#include <locale.h>
-#include <langinfo.h>
-#endif
-
#include <unistd.h>
#include <fcntl.h>
@@ -325,16 +320,3 @@ void getch2_disable(void){
tcsetattr(0,TCSANOW,&tio_orig);
#endif
}
-
-#ifdef CONFIG_ICONV
-char* get_term_charset(void)
-{
- char* charset = NULL;
-#ifdef HAVE_LANGINFO
- setlocale(LC_CTYPE, "");
- charset = strdup(nl_langinfo(CODESET));
- setlocale(LC_CTYPE, "C");
-#endif
- return charset;
-}
-#endif