+2011-04-08 John Marino <binutils@marino.st>
+
+ * arlex.l: Prevent redefinition of YY_NO_UNPUT.
+ * syslex.l: Likewise.
+
2011-04-07 Paul Brook <paul@codesourcery.com>
* readelf.c (arm_section_get_word): Handle C6000 relocations.
%{
/* arlex.l - Strange script language lexer */
-/* Copyright 1992, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2007
+/* Copyright 1992, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2011
Free Software Foundation, Inc.
This file is part of GNU Binutils.
#include "libiberty.h"
#include "arparse.h"
+#ifndef YY_NO_UNPUT
#define YY_NO_UNPUT
-
+#endif
+
extern int yylex (void);
int linenumber;
%option noinput nounput
%{
-/* Copyright 2001, 2003, 2005, 2007 Free Software Foundation, Inc.
+/* Copyright 2001, 2003, 2005, 2007, 2011 Free Software Foundation, Inc.
This file is part of GNU Binutils.
#endif
#include "sysinfo.h"
+#ifndef YY_NO_UNPUT
#define YY_NO_UNPUT
+#endif
#ifndef yywrap
static int yywrap (void) { return 1; }