]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Fix build problem introduced by previous delta to coffgrok.c
authorNick Clifton <nickc@redhat.com>
Wed, 25 Mar 2015 10:39:52 +0000 (10:39 +0000)
committerNick Clifton <nickc@redhat.com>
Wed, 25 Mar 2015 10:39:52 +0000 (10:39 +0000)
* coffgrok.c: Remove redundant prototypes.

binutils/ChangeLog
binutils/coffgrok.c

index 9f3d3b13e2fab88dc2bd325d2a9215c575fb41d3..5ae64e5922be1d158e9d7d002292c50fb6e8d370 100644 (file)
@@ -1,3 +1,7 @@
+2015-03-25  Nick Clifton  <nickc@redhat.com>
+
+       * coffgrok.c: Remove redundant prototypes.
+
 2015-03-24  Nick Clifton  <nickc@redhat.com>
 
        Apply from master:
index e2d520e3c14163a456f4b2fcaf6df22f911b9166..13171012f081bce888589b69a12e5d320a0ca0d9 100644 (file)
@@ -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)
 {