diff options
author | Nick Clifton <nickc@redhat.com> | 2000-06-25 17:59:22 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-06-25 17:59:22 +0000 |
commit | 1994a7c76c7cb0c013596cc97202aa6aa7dacbb2 (patch) | |
tree | c2ad37dbf3d2894daf7d7f9a896cea38f04d1bec /gas/config/obj-ieee.c | |
parent | 590a2450f15d88ee8491c0819ae21f3d7627d9c8 (diff) | |
download | gdb-1994a7c76c7cb0c013596cc97202aa6aa7dacbb2.zip gdb-1994a7c76c7cb0c013596cc97202aa6aa7dacbb2.tar.gz gdb-1994a7c76c7cb0c013596cc97202aa6aa7dacbb2.tar.bz2 |
Fix spelling typos.
Remove use of DEFUN().
Diffstat (limited to 'gas/config/obj-ieee.c')
-rw-r--r-- | gas/config/obj-ieee.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gas/config/obj-ieee.c b/gas/config/obj-ieee.c index 30a0798..fbabb64 100644 --- a/gas/config/obj-ieee.c +++ b/gas/config/obj-ieee.c @@ -55,9 +55,9 @@ relax_align (address, alignment) /* calculate the size of the frag chain and create a bfd section to contain all of it */ static void -DEFUN (size_section, (abfd, idx), - bfd * abfd AND - unsigned int idx) +size_section (abfd, idx) + bfd * abfd; + unsigned int idx; { asection *sec; unsigned int size = 0; @@ -106,9 +106,9 @@ DEFUN (size_section, (abfd, idx), /* run through a frag chain and write out the data to go with it */ static void -DEFUN (fill_section, (abfd, idx), - bfd * abfd AND - unsigned int idx) +fill_section (abfd, idx) + bfd * abfd; + unsigned int idx; { asection *sec = segment_info[idx].user_stuff; if (sec) @@ -159,8 +159,8 @@ DEFUN (fill_section, (abfd, idx), /* Count the relocations in a chain */ static unsigned int -DEFUN (count_entries_in_chain, (idx), - unsigned int idx) +count_entries_in_chain (idx) + unsigned int idx; { unsigned int nrelocs; fixS *fixup_ptr; @@ -178,8 +178,8 @@ DEFUN (count_entries_in_chain, (idx), /* output all the relocations for a section */ void -DEFUN (do_relocs_for, (idx), - unsigned int idx) +do_relocs_for (idx) + unsigned int idx; { unsigned int nrelocs; arelent **reloc_ptr_vector; @@ -270,8 +270,8 @@ DEFUN (do_relocs_for, (idx), /* do the symbols.. */ static void -DEFUN (do_symbols, (abfd), - bfd * abfd) +do_symbols (abfd) + bfd * abfd; { extern symbolS *symbol_rootP; symbolS *ptr; @@ -333,7 +333,7 @@ DEFUN (do_symbols, (abfd), code */ void -DEFUN_VOID (bfd_as_write_hook) +bfd_as_write_hook () { int i; @@ -509,7 +509,7 @@ obj_symbol_new_hook (symbolP) #if 1 extern void -DEFUN_VOID (write_object_file) +write_object_file () { int i; struct frchain *frchain_ptr; |