summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-07 16:54:22 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-07 16:55:08 -0600
commit47abec61b913e35827b99b8fcb53bd56605a5e11 (patch)
treef3052ee87b4e0bfd93501a86802795b5ca2afde0 /apps
parent902ad9bfd1b8e70e896741321e8efdffb510326d (diff)
downloadnuttx-47abec61b913e35827b99b8fcb53bd56605a5e11.tar.gz
nuttx-47abec61b913e35827b99b8fcb53bd56605a5e11.tar.bz2
nuttx-47abec61b913e35827b99b8fcb53bd56605a5e11.zip
token.l should use nuttx/config.h not config.h
Diffstat (limited to 'apps')
-rw-r--r--apps/interpreters/bas/token.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/interpreters/bas/token.l b/apps/interpreters/bas/token.l
index 54179765a..ec88ffc21 100644
--- a/apps/interpreters/bas/token.l
+++ b/apps/interpreters/bas/token.l
@@ -1,7 +1,7 @@
/* Tokens and token sequence arrays. */
%{
/* #includes */ /*{{{C}}}*//*{{{*/
-#include "config.h"
+#include <nuttx/config.h>
#include <assert.h>
#include <ctype.h>