diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-03-17 23:38:36 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-03-17 23:38:36 +0000 |
commit | 6f4aac6cb936ca4f4d0f37cf0ae49f8fcc8cd821 (patch) | |
tree | d3b9be885e63b213d911ce0e3d8743242851a256 | |
parent | 7838792b0c2c963349b3022875cbce225241c6cd (diff) | |
download | gdb-6f4aac6cb936ca4f4d0f37cf0ae49f8fcc8cd821.zip gdb-6f4aac6cb936ca4f4d0f37cf0ae49f8fcc8cd821.tar.gz gdb-6f4aac6cb936ca4f4d0f37cf0ae49f8fcc8cd821.tar.bz2 |
(trad_unix_bfd_is_local_label): Fixed typo where
this was also named trad_unix_bfd_copy_private_bfd_data.
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/trad-core.c | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 3c6db57..861ca50 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +Thu Mar 17 18:26:46 1994 Ken Raeburn (raeburn@cujo.cygnus.com) + + * trad-core.c (trad_unix_bfd_is_local_label): Fixed typo where + this was also named trad_unix_bfd_copy_private_bfd_data. + Thu Mar 17 10:37:07 1994 Jim Kingdon (kingdon@lioth.cygnus.com) * aoutx.h, elfcode.h, coff-alpha.c, bout.c, ecoff.c, ecofflink.c, diff --git a/bfd/trad-core.c b/bfd/trad-core.c index c6370a3..bf7266b 100644 --- a/bfd/trad-core.c +++ b/bfd/trad-core.c @@ -339,6 +339,12 @@ trad_unix_core_file_matches_executable_p (core_bfd, exec_bfd) ((boolean (*) PARAMS ((bfd *, struct bfd_link_info *))) bfd_false) #define trad_unix_bfd_final_link \ ((boolean (*) PARAMS ((bfd *, struct bfd_link_info *))) bfd_false) +#define trad_unix_bfd_copy_private_section_data \ + ((boolean (*) PARAMS ((bfd *, asection *, bfd *, asection *))) bfd_false) +#define trad_unix_bfd_copy_private_bfd_data \ + ((boolean (*) PARAMS ((bfd *, bfd *))) bfd_false) +#define trad_unix_bfd_is_local_label \ + ((boolean (*) PARAMS ((bfd *, asection *))) bfd_false) /* If somebody calls any byte-swapping routines, shoot them. */ void |