[PATCH] sim: convert some old prototypes

Mike Frysinger vapier@gentoo.org
Mon Mar 16 07:01:00 GMT 2015


Committed.
---
 sim/common/ChangeLog | 4 ++++
 sim/common/gentmap.c | 8 +++-----
 sim/common/run.c     | 6 ++----
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog
index b756733..d3b8642 100644
--- a/sim/common/ChangeLog
+++ b/sim/common/ChangeLog
@@ -1,5 +1,9 @@
 2015-03-16  Mike Frysinger  <vapier@gentoo.org>
 
+	* gentmap.c, run.c: Convert old style prototypes.
+
+2015-03-16  Mike Frysinger  <vapier@gentoo.org>
+
 	* acinclude.m4 (SIM_AC_COMMON): Call AH_BOTTOM.  Delete logic for
 	symlinking tconfig.h to tconfig.in.
 	* config.in, configure: Regenerate.
diff --git a/sim/common/gentmap.c b/sim/common/gentmap.c
index 1769c53..fbc09a2 100644
--- a/sim/common/gentmap.c
+++ b/sim/common/gentmap.c
@@ -31,7 +31,7 @@ static struct tdefs open_tdefs[] = {
 };
 
 static void
-gen_targ_vals_h ()
+gen_targ_vals_h (void)
 {
   struct tdefs *t;
 
@@ -60,7 +60,7 @@ gen_targ_vals_h ()
 }
 
 static void
-gen_targ_map_c ()
+gen_targ_map_c (void)
 {
   struct tdefs *t;
 
@@ -110,9 +110,7 @@ gen_targ_map_c ()
 }
 
 int
-main (argc, argv)
-     int argc;
-     char *argv[];
+main (int argc, char *argv[])
 {
   if (argc != 2)
     abort ();
diff --git a/sim/common/run.c b/sim/common/run.c
index 3be10ab..196d532 100644
--- a/sim/common/run.c
+++ b/sim/common/run.c
@@ -85,9 +85,7 @@ cntrl_c (int sig ATTRIBUTE_UNUSED)
 }
 
 int
-main (ac, av)
-     int ac;
-     char **av;
+main (int ac, char **av)
 {
   RETSIGTYPE (*prev_sigint) ();
   bfd *abfd;
@@ -357,7 +355,7 @@ usage (int help)
 }
 
 static void
-print_version ()
+print_version (void)
 {
   printf ("GNU simulator %s%s\n", PKGVERSION, version);
 }
-- 
2.3.2



More information about the Gdb-patches mailing list