X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=binutils%2Fdeflex.l;h=1ada969f6dd012c41dfe19147d2e7ecaaed5aa65;hb=71780f455fbf35ed4c48e94b4228c55c11a213c8;hp=b85c21719f4d5373efe8ca2ff054bd975feeffe1;hpb=07e8e62387eb914b29cbf79f468db89fa4e57b3f;p=deliverable%2Fbinutils-gdb.git diff --git a/binutils/deflex.l b/binutils/deflex.l index b85c21719f..1ada969f6d 100644 --- a/binutils/deflex.l +++ b/binutils/deflex.l @@ -1,8 +1,8 @@ -%option noinput nounput +%option noinput nounput noyywrap %{/* deflex.l - Lexer for .def files */ -/* Copyright (C) 1995-2017 Free Software Foundation, Inc. +/* Copyright (C) 1995-2020 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -91,7 +91,3 @@ int linenumber; "@" { return '@';} "," { return ',';} %% -#ifndef yywrap -/* Needed for lex, though not flex. */ -int yywrap(void) { return 1; } -#endif