summaryrefslogtreecommitdiff
path: root/apps/interpreters/bas/auto.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-03 08:33:39 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-03 08:33:39 -0600
commitb617ac1c3e500d248fa7afd583ddbf1660aeb567 (patch)
tree17d6bff17b8298fc880cd06c03fe0d8cb43eb47d /apps/interpreters/bas/auto.c
parenta6c6119c811c117bbeda3edb6a82bd310b0ac3e6 (diff)
downloadnuttx-b617ac1c3e500d248fa7afd583ddbf1660aeb567.tar.gz
nuttx-b617ac1c3e500d248fa7afd583ddbf1660aeb567.tar.bz2
nuttx-b617ac1c3e500d248fa7afd583ddbf1660aeb567.zip
Remove dependencies on environ, fstat, GETTEXt, TERMCAP, ncurse, syscfg
Diffstat (limited to 'apps/interpreters/bas/auto.c')
-rw-r--r--apps/interpreters/bas/auto.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/apps/interpreters/bas/auto.c b/apps/interpreters/bas/auto.c
index 0dda108b3..d49570ad2 100644
--- a/apps/interpreters/bas/auto.c
+++ b/apps/interpreters/bas/auto.c
@@ -65,12 +65,6 @@
#include <assert.h>
#include <ctype.h>
-#ifdef HAVE_GETTEXT
-# include <libintl.h>
-# define _(String) gettext(String)
-#else
-# define _(String) String
-#endif
#include <stdlib.h>
#include <string.h>
@@ -81,6 +75,7 @@
****************************************************************************/
#define INCREASE_STACK 16
+#define _(String) String
/****************************************************************************
* Public Functions