summaryrefslogtreecommitdiffstats
path: root/Source/cmDependsFortranParser.y
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-01-26 20:58:51 (GMT)
committerBrad King <brad.king@kitware.com>2005-01-26 20:58:51 (GMT)
commitda7b9d306e1f4c77b82fe8bd8a9cefe5bf5b4628 (patch)
treeb2c6497e0db9ff4f6ab566afa85439e43b05708c /Source/cmDependsFortranParser.y
parentf6e6633fd2dd7ac85bfa1f9faac66f38826d4ac1 (diff)
downloadCMake-da7b9d306e1f4c77b82fe8bd8a9cefe5bf5b4628.zip
CMake-da7b9d306e1f4c77b82fe8bd8a9cefe5bf5b4628.tar.gz
CMake-da7b9d306e1f4c77b82fe8bd8a9cefe5bf5b4628.tar.bz2
COMP: Added forward declaration of yylex.
Diffstat (limited to 'Source/cmDependsFortranParser.y')
-rw-r--r--Source/cmDependsFortranParser.y4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmDependsFortranParser.y b/Source/cmDependsFortranParser.y
index ba3ea59..e61a09e 100644
--- a/Source/cmDependsFortranParser.y
+++ b/Source/cmDependsFortranParser.y
@@ -45,6 +45,10 @@ Run bison like this:
#include "cmDependsFortranLexer.h" /* Interface to lexer object. */
#include "cmDependsFortranParser.h" /* Interface to parser object. */
+#include "cmDependsFortranParserTokens.h" /* Need YYSTYPE for YY_DECL. */
+
+/* Forward declare the lexer entry point. */
+YY_DECL;
/* Internal utility functions. */
static void cmDependsFortranError(yyscan_t yyscanner, const char* message);