]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2000-04-14 Michael Sokolov <msokolov@ivan.Harhan.ORG>
authorPhil Blundell <philb@gnu.org>
Tue, 23 May 2000 07:57:58 +0000 (07:57 +0000)
committerPhil Blundell <philb@gnu.org>
Tue, 23 May 2000 07:57:58 +0000 (07:57 +0000)
* 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.

binutils/ChangeLog
binutils/arlex.l
binutils/objdump.c
binutils/readelf.c

index f2e5ee481a310ec26f34b2a569f1fbb2735bf458..30887eea8d1bf02f8e8812f4d21c0d0286359672 100644 (file)
@@ -1,3 +1,10 @@
+2000-04-14  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
+
+       * 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  <phdm@macqel.be>
 
        * readelf (dynamic_segment_mips_val): Call `sprintf', not
index 74e13d13dfe295a88589e73088694d6179363d87..2fd94da4dd82f9d84d2de07454059239faf2fc57 100644 (file)
@@ -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; }
index 6f0a63e5c053dc7e884eeb31eddb30f61358ea7a..9ad722bb44a7f58e1fa7661e8ae8b34ec098df60 100644 (file)
@@ -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 <stdarg.h>
-#else
-#include <varargs.h>
-#endif
-
 /* Internal headers for the ELF .stab-dump code - sorry.  */
 #define        BYTES_IN_WORD   32
 #include "aout/aout64.h"
index 81d768ea58f031f3a4b72406c3594ec351ec9fa6..3a6ab5df69ffa2d66813b6ef95d81edfe258cea8 100644 (file)
 #include "bucomm.h"
 #include "getopt.h"
 
-#ifdef ANSI_PROTOTYPES
-#include <stdarg.h>
-#else
-#include <varargs.h>
-#endif
-
 char *                 program_name = "readelf";
 unsigned int           dynamic_addr;
 bfd_size_type                  dynamic_size;