diff options
Diffstat (limited to 'parser.l')
-rw-r--r-- | parser.l | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -71,10 +71,9 @@ val form_to_ln_hash; static val prepared_error_message; -#ifdef FLEX_MAJOR_VERSION -#define FLEX_NUM_VERSION 1000*FLEX_MAJOR_VERSION + \ - 100*FLEX_MINOR_VERSION + \ - FLEX_SUBMINOR_VERSION +#define FLEX_NUM_VERSION 10000*YY_FLEX_MAJOR_VERSION + \ + 100*YY_FLEX_MINOR_VERSION + \ + YY_FLEX_SUBMINOR_VERSION #if FLEX_NUM_VERSION < 20509 int yylex_destroy(void) @@ -82,7 +81,6 @@ int yylex_destroy(void) return 0; } #endif -#endif void yyerror(const char *s) { |