From: Nick Clifton Date: Wed, 25 Mar 2015 10:39:52 +0000 (+0000) Subject: Fix build problem introduced by previous delta to coffgrok.c X-Git-Tag: binutils-2_25_1~162 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a5ebc2c7ddc26fc1473d53ace9a088d2aa584f0f;p=thirdparty%2Fbinutils-gdb.git Fix build problem introduced by previous delta to coffgrok.c * coffgrok.c: Remove redundant prototypes. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 9f3d3b13e2f..5ae64e5922b 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2015-03-25 Nick Clifton + + * coffgrok.c: Remove redundant prototypes. + 2015-03-24 Nick Clifton Apply from master: diff --git a/binutils/coffgrok.c b/binutils/coffgrok.c index e2d520e3c14..13171012f08 100644 --- a/binutils/coffgrok.c +++ b/binutils/coffgrok.c @@ -28,7 +28,6 @@ #include "sysdep.h" #include "bfd.h" #include "libiberty.h" - #include "coff/internal.h" #include "../bfd/libcoff.h" #include "bucomm.h" @@ -54,7 +53,7 @@ static long symcount; #define N(x) ((x)->_n._n_nptr[1]) static struct coff_ptr_struct *rawsyms; -static int rawcount; +static unsigned int rawcount; static bfd *abfd; #define PTR_SIZE 4 @@ -66,19 +65,6 @@ static bfd *abfd; #define INDEXOF(p) ((struct coff_ptr_struct *)(p)-(rawsyms)) -static struct coff_scope *empty_scope (void); -static struct coff_symbol *empty_symbol (void); -static void push_scope (int); -static void pop_scope (void); -static void do_sections_p1 (struct coff_ofile *); -static void do_sections_p2 (struct coff_ofile *); -static struct coff_where *do_where (int); -static struct coff_line *do_lines (int, char *); -static struct coff_type *do_type (int); -static struct coff_visible *do_visible (int); -static int do_define (int, struct coff_scope *); -static struct coff_ofile *doit (void); - static struct coff_scope * empty_scope (void) {