diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-16 02:13:31 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-16 03:01:09 -0400 |
commit | 6cd5ace4db98987881c71e33dcae418fd258c38d (patch) | |
tree | bb1af8e4fd6e43f7646763c696103f8bd9f8e7cd /sim/common | |
parent | ae7d0cac8ce971f7108d270c1d3f8481919b1e86 (diff) | |
download | gdb-6cd5ace4db98987881c71e33dcae418fd258c38d.zip gdb-6cd5ace4db98987881c71e33dcae418fd258c38d.tar.gz gdb-6cd5ace4db98987881c71e33dcae418fd258c38d.tar.bz2 |
sim: convert some old prototypes
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/ChangeLog | 4 | ||||
-rw-r--r-- | sim/common/gentmap.c | 8 | ||||
-rw-r--r-- | 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); } |