aboutsummaryrefslogtreecommitdiff
path: root/gas/config/obj-som.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-03-24 20:40:28 +0000
committerNick Clifton <nickc@redhat.com>2005-03-24 20:40:28 +0000
commitea1562b345338540cf9a3c8fa28fbcb6da78fd3e (patch)
tree365f693777e612e6f40b668d1ec2d43f6a0c32ac /gas/config/obj-som.c
parent1acfb01b60e3f3e877aff2c05a29997719807696 (diff)
downloadfsf-binutils-gdb-ea1562b345338540cf9a3c8fa28fbcb6da78fd3e.zip
fsf-binutils-gdb-ea1562b345338540cf9a3c8fa28fbcb6da78fd3e.tar.gz
fsf-binutils-gdb-ea1562b345338540cf9a3c8fa28fbcb6da78fd3e.tar.bz2
Convert unmaintained files over to ISO-C90 and fix formatting.
Diffstat (limited to 'gas/config/obj-som.c')
-rw-r--r--gas/config/obj-som.c39
1 files changed, 14 insertions, 25 deletions
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}
+};