diff options
author | Tavian Barnes <tavianator@gmail.com> | 2009-11-25 16:48:13 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2009-11-25 16:48:13 -0500 |
commit | cc79ac6130baca3179de24004420ce1d0199a140 (patch) | |
tree | e680dbecd5536c188e185c33958d3fab533f72b3 /dimension/lexer.l | |
parent | 640917131f4f403f1d84ee2ff4d5a33c08a9c53a (diff) | |
download | dimension-cc79ac6130baca3179de24004420ce1d0199a140.tar.xz |
Use the dmnsn_ prefix for flex/bison generated sources.
Diffstat (limited to 'dimension/lexer.l')
-rw-r--r-- | dimension/lexer.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dimension/lexer.l b/dimension/lexer.l index 942a89f..ac90d8e 100644 --- a/dimension/lexer.l +++ b/dimension/lexer.l @@ -17,7 +17,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * *************************************************************************/ -%option reentrant stack yylineno noyywrap +%option reentrant stack yylineno noyywrap prefix="dmnsn_yy" outfile="lex.yy.c" %{ #define YY_DECL static int yylex(const char *filename, dmnsn_array *tokens, \ |