diff options
author | Brad King <brad.king@kitware.com> | 2005-01-26 20:58:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-01-26 20:58:51 (GMT) |
commit | da7b9d306e1f4c77b82fe8bd8a9cefe5bf5b4628 (patch) | |
tree | b2c6497e0db9ff4f6ab566afa85439e43b05708c /Source/cmDependsFortranParser.y | |
parent | f6e6633fd2dd7ac85bfa1f9faac66f38826d4ac1 (diff) | |
download | CMake-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.y | 4 |
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); |