From: Phil Blundell Date: Tue, 23 May 2000 07:57:58 +0000 (+0000) Subject: 2000-04-14 Michael Sokolov X-Git-Tag: binutils-2_10~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=16ea6169ef917dc60d9b7ac0b779969499d95f0f;p=thirdparty%2Fbinutils-gdb.git 2000-04-14 Michael Sokolov * arlex.l: Add directives to increase lex buffer size. * objdump.c, readelf.c: Don't include strarg.h or varargs.h. They are already included by bucomm.h. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f2e5ee481a3..30887eea8d1 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,10 @@ +2000-04-14 Michael Sokolov + + * arlex.l: Add directives to increase lex buffer size. + + * objdump.c, readelf.c: Don't include strarg.h or varargs.h. They are + already included by bucomm.h. + 2000-04-10 Philippe De Muyter * readelf (dynamic_segment_mips_val): Call `sprintf', not diff --git a/binutils/arlex.l b/binutils/arlex.l index 74e13d13dfe..2fd94da4dd8 100644 --- a/binutils/arlex.l +++ b/binutils/arlex.l @@ -31,6 +31,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ int linenumber; %} + +%a 10000 +%o 25000 + %% "ADDLIB" { return ADDLIB; } diff --git a/binutils/objdump.c b/binutils/objdump.c index 6f0a63e5c05..9ad722bb44a 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -29,12 +29,6 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "debug.h" #include "budbg.h" -#ifdef ANSI_PROTOTYPES -#include -#else -#include -#endif - /* Internal headers for the ELF .stab-dump code - sorry. */ #define BYTES_IN_WORD 32 #include "aout/aout64.h" diff --git a/binutils/readelf.c b/binutils/readelf.c index 81d768ea58f..3a6ab5df69f 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -74,12 +74,6 @@ #include "bucomm.h" #include "getopt.h" -#ifdef ANSI_PROTOTYPES -#include -#else -#include -#endif - char * program_name = "readelf"; unsigned int dynamic_addr; bfd_size_type dynamic_size;