diff options
author | Per Bothner <per@bothner.com> | 1991-11-03 19:55:59 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1991-11-03 19:55:59 +0000 |
commit | b941cb35d25c739b5786986ba35a30a8dd8f5e8d (patch) | |
tree | 2edde778b1d52523862db9799b7a267d64101b43 /include | |
parent | 7a25e728e720f91cdc21164676a0a144e4d596de (diff) | |
download | gdb-b941cb35d25c739b5786986ba35a30a8dd8f5e8d.zip gdb-b941cb35d25c739b5786986ba35a30a8dd8f5e8d.tar.gz gdb-b941cb35d25c739b5786986ba35a30a8dd8f5e8d.tar.bz2 |
Updated from ../bfd/bfd-in.h.
Diffstat (limited to 'include')
-rw-r--r-- | include/bfd.h | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/include/bfd.h b/include/bfd.h index 9bd167d..8e2b19c 100644 --- a/include/bfd.h +++ b/include/bfd.h @@ -223,7 +223,8 @@ typedef enum bfd_print_symbol { bfd_print_symbol_name, bfd_print_symbol_more, - bfd_print_symbol_all + bfd_print_symbol_all, + bfd_print_symbol_nm, /* Pretty format suitable for nm program. */ } bfd_print_symbol_type; @@ -1612,6 +1613,24 @@ problems later on. #define bfd_make_empty_symbol(abfd) \ BFD_SEND (abfd, _bfd_make_empty_symbol, (abfd)) +/* + bfd_decode_symclass +Return a lower-case character corresponding to the symbol class of symbol. +*/ + + PROTO(int, bfd_decode_symclass, (asymbol *symbol)); + +/* + + bfd_stab_name +Returns a string for the stab with the given code, or NULL if not found. +*/ + + PROTO(char *, bfd_stab_name, (int code)); + +/* +*/ + /*:bfd.c*/ /* @section @code{typedef bfd} |