diff options
author | Nick Clifton <nickc@redhat.com> | 2001-02-07 23:16:22 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-02-07 23:16:22 +0000 |
commit | 7340082dc8d4b1fcd14f6d18fc0086fdae31d556 (patch) | |
tree | 93c292ba0787e54e9ce8723f47602adb16e17c30 /bfd/libbfd-in.h | |
parent | 4d6ed7c8cea13961e6c4bd3425dd679eb44ebc34 (diff) | |
download | gdb-7340082dc8d4b1fcd14f6d18fc0086fdae31d556.zip gdb-7340082dc8d4b1fcd14f6d18fc0086fdae31d556.tar.gz gdb-7340082dc8d4b1fcd14f6d18fc0086fdae31d556.tar.bz2 |
Change bfd_target_vector from an array to a pointer
Diffstat (limited to 'bfd/libbfd-in.h')
-rw-r--r-- | bfd/libbfd-in.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/libbfd-in.h b/bfd/libbfd-in.h index fb5f210..28ade8c 100644 --- a/bfd/libbfd-in.h +++ b/bfd/libbfd-in.h @@ -521,7 +521,7 @@ extern bfd *bfd_last_cache; /* List of supported target vectors, and the default vector (if bfd_default_vector[0] is NULL, there is no default). */ -extern const bfd_target * const bfd_target_vector[]; +extern const bfd_target * const *bfd_target_vector; extern const bfd_target *bfd_default_vector[]; /* Functions shared by the ECOFF and MIPS ELF backends, which have no |