summaryrefslogtreecommitdiff
path: root/apps/interpreters
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-10-28 17:22:38 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-10-28 17:22:38 -0600
commit274cc1fac9732628ac8e337af77ffe69f59d240f (patch)
treeeb2ba71f96222b895561865617156580c03af785 /apps/interpreters
parent616a6a6ad0c16cd79a6c398a8b71dcc6a5f75cf0 (diff)
downloadnuttx-274cc1fac9732628ac8e337af77ffe69f59d240f.tar.gz
nuttx-274cc1fac9732628ac8e337af77ffe69f59d240f.tar.bz2
nuttx-274cc1fac9732628ac8e337af77ffe69f59d240f.zip
Remove locale support because it is not supported on
NuttX Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com>
Diffstat (limited to 'apps/interpreters')
-rw-r--r--apps/interpreters/bas/main.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/interpreters/bas/main.c b/apps/interpreters/bas/main.c
index 9c8176cd8..c3468c679 100644
--- a/apps/interpreters/bas/main.c
+++ b/apps/interpreters/bas/main.c
@@ -14,7 +14,6 @@
#else
#define _(String) String
#endif
-#include <locale.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
@@ -57,8 +56,6 @@ int bas_main(int argc, char *argv[])
};
/*}}}*/
- setlocale(LC_MESSAGES,"");
- setlocale(LC_CTYPE,"");
#ifdef HAVE_GETTEXT
bindtextdomain("bas",LOCALEDIR);
textdomain("bas");