Skip ARM vcmp-noprefix-imm test on non-ELF targets
[binutils-gdb.git] / binutils / arlex.l
index b5b12d1d88195ad09610896c0ff8c07dfd18400e..43350df292d1729b01bd10f23374acdf4bef7781 100644 (file)
@@ -1,4 +1,4 @@
-%option noinput nounput
+%option noinput nounput noyywrap
 
 %{
 /* arlex.l - Strange script language lexer */
@@ -88,7 +88,3 @@ int linenumber;
 "\n"            { linenumber ++; return NEWLINE; }
 
 %%
-#ifndef yywrap
-/* Needed for lex, though not flex. */
-int yywrap(void) { return 1; }
-#endif