Commit 878ea5d2 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

Add the nounistd option to all lex source files.

parent 28464f96
......@@ -128,6 +128,7 @@
%option 8bit never-interactive
%option nounput
%option prefix="ppy_"
%option nounistd
%x pp_pp
%x pp_eol
......
......@@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
%option nounput interactive 8bit prefix="dbg_"
%option nounput interactive 8bit prefix="dbg_" nounistd
%{
#include <stdlib.h>
......
......@@ -20,7 +20,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
%}
%option nounput interactive 8bit
%option nounput interactive 8bit nounistd
%x quote
%{
#include <assert.h>
......
......@@ -21,6 +21,7 @@
%option stack
%option nounput noyy_top_state
%option 8bit never-interactive prefix="parser_"
%option nounistd
nl \r?\n
ws [ \f\t\r]
......
......@@ -87,6 +87,7 @@
%option nounput noyy_top_state noyywrap
%option 8bit never-interactive
%option prefix="parser_"
%option nounistd
/* Some shortcut definitions */
ws [ \f\t\r]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment