diff options
author | Tom Tromey <tromey@redhat.com> | 2013-01-07 17:18:25 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-01-07 17:18:25 +0000 |
commit | 45a466b578083a05f1138eff9232254b1a30f683 (patch) | |
tree | 4f4bf2bd7c7f5eb7ce6622325a3235a38b2b20d2 /bfd/bfd-in2.h | |
parent | 0140d685ba051db5942b109778c0810f21c42313 (diff) | |
download | gdb-45a466b578083a05f1138eff9232254b1a30f683.zip gdb-45a466b578083a05f1138eff9232254b1a30f683.tar.gz gdb-45a466b578083a05f1138eff9232254b1a30f683.tar.bz2 |
* section.c (_bfd_std_section): Rename from std_section.
(bfd_com_section_ptr, bfd_und_section_ptr, bfd_abs_section_ptr)
(STD_SECTION): Update.
* bfd-in2.h: Rebuild.
Diffstat (limited to 'bfd/bfd-in2.h')
-rw-r--r-- | bfd/bfd-in2.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index 01f0fa2..20a45b2 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -1575,7 +1575,7 @@ struct relax_table { /* These sections are global, and are managed by BFD. The application and target back end are not permitted to change the values in these sections. */ -extern asection std_section[4]; +extern asection _bfd_std_section[4]; #define BFD_ABS_SECTION_NAME "*ABS*" #define BFD_UND_SECTION_NAME "*UND*" @@ -1583,13 +1583,13 @@ extern asection std_section[4]; #define BFD_IND_SECTION_NAME "*IND*" /* Pointer to the common section. */ -#define bfd_com_section_ptr (&std_section[0]) +#define bfd_com_section_ptr (&_bfd_std_section[0]) /* Pointer to the undefined section. */ -#define bfd_und_section_ptr (&std_section[1]) +#define bfd_und_section_ptr (&_bfd_std_section[1]) /* Pointer to the absolute section. */ -#define bfd_abs_section_ptr (&std_section[2]) +#define bfd_abs_section_ptr (&_bfd_std_section[2]) /* Pointer to the indirect section. */ -#define bfd_ind_section_ptr (&std_section[3]) +#define bfd_ind_section_ptr (&_bfd_std_section[3]) #define bfd_is_und_section(sec) ((sec) == bfd_und_section_ptr) #define bfd_is_abs_section(sec) ((sec) == bfd_abs_section_ptr) |