diff options
author | Steve Chamberlain <sac@cygnus> | 1992-10-08 16:03:58 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-10-08 16:03:58 +0000 |
commit | ab414d8767e0e420b893c83955050ba0fdc5df26 (patch) | |
tree | b1fb9cfded2e25546b5f0e3f3fc2922e9f93808f /include/bfd.h | |
parent | 294eaca479e9ced9a87b958c37feb2c570aa1595 (diff) | |
download | gdb-ab414d8767e0e420b893c83955050ba0fdc5df26.zip gdb-ab414d8767e0e420b893c83955050ba0fdc5df26.tar.gz gdb-ab414d8767e0e420b893c83955050ba0fdc5df26.tar.bz2 |
Now a bfd knows whether underscores are normally prepended
to symbols in its file format.
Diffstat (limited to 'include/bfd.h')
-rw-r--r-- | include/bfd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/bfd.h b/include/bfd.h index e8f75b1..780c0bc 100644 --- a/include/bfd.h +++ b/include/bfd.h @@ -327,7 +327,7 @@ extern CONST short _bfd_host_big_endian; #define bfd_get_architecture(abfd) ((abfd)->obj_arch) #define bfd_get_machine(abfd) ((abfd)->obj_machine) - +#define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char) #define BYTE_SIZE 1 #define SHORT_SIZE 2 @@ -1274,6 +1274,7 @@ typedef struct bfd_target boolean header_byteorder_big_p; flagword object_flags; flagword section_flags; + char symbol_leading_char; char ar_pad_char; unsigned short ar_max_namelen; unsigned int align_power_min; |