X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=binutils%2Farlex.l;h=f421519c2caf29f37968a9dbb4a6a98c5c249925;hb=22508f61d072de718823429fad0030bf1cd9c6c9;hp=28f61b4bb664d0fdeeaaa2b7a86026d414fb9673;hpb=3aade68889268c7d15e121d6d63cb1b753ec12fa;p=deliverable%2Fbinutils-gdb.git diff --git a/binutils/arlex.l b/binutils/arlex.l index 28f61b4bb6..f421519c2c 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-2015 Free Software Foundation, Inc. +/* Copyright (C) 1992-2019 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