summaryrefslogtreecommitdiff
path: root/apps/interpreters
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-04 15:58:13 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-04 15:58:13 -0600
commit25e3eeffe377f4747995563036ae548cf4fdc017 (patch)
tree723397635b9d7dad542a628c0b4c5ea75410499a /apps/interpreters
parent3ea0d2bba71300756f040801b03ee73773025a3c (diff)
downloadnuttx-25e3eeffe377f4747995563036ae548cf4fdc017.tar.gz
nuttx-25e3eeffe377f4747995563036ae548cf4fdc017.tar.bz2
nuttx-25e3eeffe377f4747995563036ae548cf4fdc017.zip
A naming kludge that I 'fixed' is actually reuired
Diffstat (limited to 'apps/interpreters')
-rw-r--r--apps/interpreters/bas/autotypes.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/apps/interpreters/bas/autotypes.h b/apps/interpreters/bas/autotypes.h
index 211a1d3f4..ce736ca37 100644
--- a/apps/interpreters/bas/autotypes.h
+++ b/apps/interpreters/bas/autotypes.h
@@ -56,8 +56,14 @@
*
****************************************************************************/
-#ifndef __APPS_EXAMPLES_BAS_AUTOTYPES_H
-#define __APPS_EXAMPLES_BAS_AUTOTYPES_H
+/* REVISIT: Why is this? If the following is __APPS_EXAMPLES_BAS_AUTOTYPES_H
+ * then there are compile errors! Those compile errors occur because this
+ * function defines some of the same structures as does auto.h. BUT, the
+ * definitions ARE NOT THE SAME. What is up with this?
+ */
+
+#ifndef __APPS_EXAMPLES_BAS_AUTO_H
+#define __APPS_EXAMPLES_BAS_AUTO_H
/****************************************************************************
* Included Files
@@ -98,4 +104,4 @@ union AutoSlot
struct Var var;
};
-#endif /* __APPS_EXAMPLES_BAS_AUTOTYPES_H */
+#endif /* __APPS_EXAMPLES_BAS_AUTO_H */