summaryrefslogtreecommitdiff
path: root/binutils/deflex.l
diff options
context:
space:
mode:
authorDmitry Gorbachev <d.g.gorbachev@gmail.com>2014-03-12 10:56:17 +0000
committerNick Clifton <nickc@redhat.com>2014-03-12 10:56:17 +0000
commitc63043aae739e147ad1da015d48ecceeb8b3fef9 (patch)
treed44393b7423e7798f6d6ce6d320a2a566e3dc923 /binutils/deflex.l
parentfa47fa924667f5d668faf24412dea39150e14a2a (diff)
Fix compile time warnings about unused variables 'yyinput' and 'input'.
PR binutils/16567 * deflex.l: Add noinput and nounput options.
Diffstat (limited to 'binutils/deflex.l')
-rw-r--r--binutils/deflex.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/deflex.l b/binutils/deflex.l
index a5e344883b..0a9a0d94ab 100644
--- a/binutils/deflex.l
+++ b/binutils/deflex.l
@@ -1,3 +1,5 @@
+%option noinput nounput
+
%{/* deflex.l - Lexer for .def files */
/* Copyright (C) 1995-2014 Free Software Foundation, Inc.
@@ -27,8 +29,6 @@
#include "defparse.h"
#include "dlltool.h"
-#define YY_NO_UNPUT
-
int linenumber;
%}