From ea1562b345338540cf9a3c8fa28fbcb6da78fd3e Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 24 Mar 2005 20:40:28 +0000 Subject: Convert unmaintained files over to ISO-C90 and fix formatting. --- gas/config/obj-som.c | 39 ++++++++++++++------------------------- 1 file changed, 14 insertions(+), 25 deletions(-) (limited to 'gas/config/obj-som.c') diff --git a/gas/config/obj-som.c b/gas/config/obj-som.c index e9596cf..2daa153 100644 --- a/gas/config/obj-som.c +++ b/gas/config/obj-som.c @@ -27,15 +27,6 @@ #include "aout/stab_gnu.h" #include "obstack.h" -static void obj_som_weak PARAMS ((int)); -static void adjust_stab_sections PARAMS ((bfd *, asection *, PTR)); - -const pseudo_typeS obj_pseudo_table[] = -{ - {"weak", obj_som_weak, 0}, - {NULL, NULL, 0} -}; - static int version_seen = 0; static int copyright_seen = 0; static int compiler_seen = 0; @@ -43,7 +34,7 @@ static int compiler_seen = 0; /* Unused by SOM. */ void -obj_read_begin_hook () +obj_read_begin_hook (void) { } @@ -53,8 +44,7 @@ obj_read_begin_hook () string is "sourcefile language version" and is delimited by blanks. */ void -obj_som_compiler (unused) - int unused ATTRIBUTE_UNUSED; +obj_som_compiler (int unused ATTRIBUTE_UNUSED) { char *buf; char c; @@ -130,8 +120,7 @@ obj_som_compiler (unused) /* Handle a .version directive. */ void -obj_som_version (unused) - int unused ATTRIBUTE_UNUSED; +obj_som_version (int unused ATTRIBUTE_UNUSED) { char *version, c; @@ -176,8 +165,7 @@ obj_som_version (unused) If you care about copyright strings that much, you fix it. */ void -obj_som_copyright (unused) - int unused ATTRIBUTE_UNUSED; +obj_som_copyright (int unused ATTRIBUTE_UNUSED) { char *copyright, c; @@ -225,8 +213,7 @@ obj_som_copyright (unused) which BFD does not understand. */ void -obj_som_init_stab_section (seg) - segT seg; +obj_som_init_stab_section (segT seg) { segT saved_seg = now_seg; segT space; @@ -282,10 +269,7 @@ obj_som_init_stab_section (seg) /* Fill in the counts in the first entry in a .stabs section. */ static void -adjust_stab_sections (abfd, sec, xxx) - bfd *abfd; - asection *sec; - PTR xxx ATTRIBUTE_UNUSED; +adjust_stab_sections (bfd *abfd, asection *sec, PTR xxx ATTRIBUTE_UNUSED) { asection *strsec; char *p; @@ -312,14 +296,13 @@ adjust_stab_sections (abfd, sec, xxx) stab entry and to set the starting address for each code subspace. */ void -som_frob_file () +som_frob_file (void) { bfd_map_over_sections (stdoutput, adjust_stab_sections, (PTR) 0); } static void -obj_som_weak (ignore) - int ignore ATTRIBUTE_UNUSED; +obj_som_weak (int ignore ATTRIBUTE_UNUSED) { char *name; int c; @@ -344,3 +327,9 @@ obj_som_weak (ignore) while (c == ','); demand_empty_rest_of_line (); } + +const pseudo_typeS obj_pseudo_table[] = +{ + {"weak", obj_som_weak, 0}, + {NULL, NULL, 0} +}; -- cgit v1.1