summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-07-23 08:19:25 +0000
committerAlan Modra <amodra@gmail.com>2000-07-23 08:19:25 +0000
commit5bbe3a506e2c0ba22fbe01a443f693a35db27459 (patch)
tree81a8a9e567be0c869cca834178a85945f988254d
parentba73c63f53ed79c461b86feacc19166bb80c98ea (diff)
(external_coff_symbol_p): K&R-ise.
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/rdcoff.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index bed8d0b137..4c77c72010 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
+
+ * rdcoff.c (external_coff_symbol_p): K&R-ise.
+
2000-07-20 H.J. Lu <hjl@gnu.org>
* binutils/binutils.texi: Put back "@end table" deleted by
diff --git a/binutils/rdcoff.c b/binutils/rdcoff.c
index 22c8ab95e9..14f973e19e 100644
--- a/binutils/rdcoff.c
+++ b/binutils/rdcoff.c
@@ -661,7 +661,8 @@ parse_coff_symbol (abfd, types, sym, coff_symno, psyment, dhandle, type,
/* Determine if a symbol has external visibility. */
static boolean
-external_coff_symbol_p (int sym_class)
+external_coff_symbol_p (sym_class)
+ int sym_class;
{
switch (sym_class)
{