* archures.c: Rename `struct bfd_arch_info_struct' to `struct
authorJohn Gilmore <gnu@cygnus>
Mon, 7 Oct 1991 02:16:22 +0000 (02:16 +0000)
committerJohn Gilmore <gnu@cygnus>
Mon, 7 Oct 1991 02:16:22 +0000 (02:16 +0000)
bfd_arch_info'.  Rename `typedef bfd_arch_info_struct_type' to
`bfd_arch_info_type'.  All uses changed.

bfd/cpu-a29k.c

index 9048139a7f2ef596a6b548adf295eba1925c3c57..d9a72f28264c5bae8da8c6fa5f5c5562259ae8e0 100644 (file)
@@ -2,9 +2,7 @@
 #include <bfd.h>
 #include "libbfd.h"
 
-
-
-static bfd_arch_info_struct_type arch_info_struct = 
+static bfd_arch_info_type arch_info_struct = 
   {
     32,        /* 32 bits in a word */
     32,        /* 32 bits in an address */
@@ -20,13 +18,7 @@ static bfd_arch_info_struct_type arch_info_struct =
     0,
   };
 
-
-
-
 void DEFUN_VOID(bfd_a29k_arch)
 {
   bfd_arch_linkin(&arch_info_struct);
 }
-
-
-