diff options
author | Keith Packard <keithp@keithp.com> | 2005-08-01 22:20:34 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-08-01 22:20:34 +0000 |
commit | dea36bb8cdeed1629110cbc407fdb18482d59651 (patch) | |
tree | a53ea359d5ead1ddce758eaa45868566144fda2b | |
parent | ead3a2dc87122b8d6af79efe719362e2d7d4d697 (diff) |
dont initialize yylineno in case the lex variant defines it separately (asXORG-6_99_99_900XORG-6_8_99_903XORG-6_8_99_902XORG-6_8_99_901XORG-6_8_99_900
flex does)
-rw-r--r-- | lex.l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ #include "gram.h" #include "constants.h" #if defined(FLEX_SCANNER) && !defined(YY_FLEX_LEX_COMPAT) && !defined(__UNIXOS2__) -int yylineno = 0; +int yylineno; #endif %} |