summaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorDave Anglin <dave.anglin@nrc.ca>2002-08-29 14:37:19 +0000
committerDave Anglin <dave.anglin@nrc.ca>2002-08-29 14:37:19 +0000
commit51240b8d9388477bb6cb87fe944d383a74a152c9 (patch)
tree3b5cc67d1af095dd224e4b874349c40038545724 /bfd
parent86aba9dbfa7eb9bf07dd611c85e3cff31ebaa740 (diff)
downloadbinutils-gdb-51240b8d9388477bb6cb87fe944d383a74a152c9.tar.gz
* chew.c (paramstuff, outputdots, perform, bang and usage): Remove
void from function definitions.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/doc/ChangeLog5
-rw-r--r--bfd/doc/chew.c10
2 files changed, 10 insertions, 5 deletions
diff --git a/bfd/doc/ChangeLog b/bfd/doc/ChangeLog
index 39c69c938b4..f20113c7f70 100644
--- a/bfd/doc/ChangeLog
+++ b/bfd/doc/ChangeLog
@@ -1,3 +1,8 @@
+2002-08-29 John David Anglin <dave@hiauly1.hia.nrc.ca>
+
+ * chew.c (paramstuff, outputdots, perform, bang and usage): Remove
+ void from function definitions.
+
2002-08-13 Alan Modra <amodra@bigpond.net.au>
* header.sed: Strip tabs.
diff --git a/bfd/doc/chew.c b/bfd/doc/chew.c
index dc6f8110829..bdf76e46e19 100644
--- a/bfd/doc/chew.c
+++ b/bfd/doc/chew.c
@@ -485,7 +485,7 @@ print_stack_level ()
*/
static void
-paramstuff (void)
+paramstuff ()
{
unsigned int openp;
unsigned int fname;
@@ -626,7 +626,7 @@ manglecomments ()
/* Mod tos so that only lines with leading dots remain */
static void
-outputdots (void)
+outputdots ()
{
unsigned int idx = 0;
string_type out;
@@ -1261,7 +1261,7 @@ lookup_word (word)
}
static void
-perform (void)
+perform ()
{
tos = stack;
@@ -1412,7 +1412,7 @@ compile (string)
}
static void
-bang (void)
+bang ()
{
*(long *) ((isp[0])) = isp[-1];
isp -= 2;
@@ -1487,7 +1487,7 @@ read_in (str, file)
}
static void
-usage (void)
+usage ()
{
fprintf (stderr, "usage: -[d|i|g] <file >file\n");
exit (33);