summary refs log tree commit diff
path: root/bin/make.l
diff options
context:
space:
mode:
Diffstat (limited to 'bin/make.l')
-rw-r--r--bin/make.l7
1 files changed, 1 insertions, 6 deletions
diff --git a/bin/make.l b/bin/make.l
index 027fefa3..ae1be2f5 100644
--- a/bin/make.l
+++ b/bin/make.l
@@ -15,7 +15,7 @@
  */
 
 %option prefix="make"
-%option noyywrap
+%option noinput nounput noyywrap
 
 %{
 #include "hilex.h"
@@ -122,11 +122,6 @@ operator [:!]|::
 
 .|\n { return Normal; }
 
-%{
-	(void)yyunput;
-	(void)input;
-%}
-
 %%
 
 const struct Lexer LexMake = { yylex, &yyin, &yytext };