2021-02-21 00:02:15 +00:00
|
|
|
--- a/src/lex_config.l
|
|
|
|
+++ b/src/lex_config.l
|
|
|
|
@@ -1,6 +1,6 @@
|
2017-01-21 15:37:41 +00:00
|
|
|
/* Special state for handling include files */
|
|
|
|
%x src
|
|
|
|
-%option noinput nounput
|
|
|
|
+%option noinput nounput noyywrap
|
|
|
|
|
|
|
|
%{
|
|
|
|
/*
|
2021-02-21 00:02:15 +00:00
|
|
|
@@ -77,10 +77,6 @@ module /* skip */ ;
|
2017-01-21 15:37:41 +00:00
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
-#ifndef yywrap
|
|
|
|
-int yywrap() { return 1; }
|
|
|
|
-#endif
|
|
|
|
-
|
|
|
|
/*======================================================================
|
|
|
|
|
|
|
|
Stuff to parse basic data types
|