diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 6 | ||||
-rw-r--r-- | binutils/syslex.l | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 6a61d61..d504ff1 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2017-01-04 Dilan Palauzov <dilyan.palauzov@aegee.org> + + PR 20958 + * syslex.l (option): Add noyywrap + (yywrap): Delete. + 2017-01-02 Alan Modra <amodra@gmail.com> Update year range in copyright notice of all files. diff --git a/binutils/syslex.l b/binutils/syslex.l index 86cb17d..7fcc714 100644 --- a/binutils/syslex.l +++ b/binutils/syslex.l @@ -1,4 +1,4 @@ -%option noinput nounput +%option noinput nounput noyywrap %{ /* Copyright (C) 2001-2017 Free Software Foundation, Inc. @@ -36,10 +36,6 @@ #define YY_NO_UNPUT #endif -#ifndef yywrap -static int yywrap (void) { return 1; } -#endif - extern int yylex (void); %} %% |