X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=binutils%2Farlex.l;h=8ee5ce0d397e66a98f25b96f41b226bb5e49b863;hb=0ac553107c601cc9c4c340338e0fc7e0ce8375cc;hp=b5b12d1d88195ad09610896c0ff8c07dfd18400e;hpb=2571583aed598dd3f9651b53434e5f177a0e3cf7;p=deliverable%2Fbinutils-gdb.git diff --git a/binutils/arlex.l b/binutils/arlex.l index b5b12d1d88..8ee5ce0d39 100644 --- a/binutils/arlex.l +++ b/binutils/arlex.l @@ -1,9 +1,9 @@ -%option noinput nounput +%option noinput nounput noyywrap %{ /* arlex.l - Strange script language lexer */ -/* Copyright (C) 1992-2017 Free Software Foundation, Inc. +/* Copyright (C) 1992-2020 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -88,7 +88,3 @@ int linenumber; "\n" { linenumber ++; return NEWLINE; } %% -#ifndef yywrap -/* Needed for lex, though not flex. */ -int yywrap(void) { return 1; } -#endif