From c034cd7dee803c5e4057ff8069103231ad431463 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Wed, 14 Sep 2011 19:52:14 -0400 Subject: [PATCH] Add never-interactive flex option. This eliminates the (non-ANSI) fileno and isatty calls. Our input is always a fixed buffer. --- src/scan.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scan.l b/src/scan.l index e59b0aa..ad90afe 100644 --- a/src/scan.l +++ b/src/scan.l @@ -20,7 +20,7 @@ #include "parse.h" } -%option noyywrap bison-locations reentrant +%option noyywrap bison-locations reentrant never-interactive %option extra-type="_Bool" %option prefix="cdecl__yy" -- 2.43.2