Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <modra@gmail.com>2003-12-03 01:59:59 +0300
committerAlan Modra <modra@gmail.com>2003-12-03 01:59:59 +0300
commitd47640a3d558f36d9662756ffb859ef079a2e3fd (patch)
tree8a5e9cb9289fd4bd807587d18c6d6474cbfdcc0d /include/bfdlink.h
parentc488125f39e727b7f06d289a3aa8858b3e713986 (diff)
Rename bfd_link_hash_entry field "next" -> "und_next".
Diffstat (limited to 'include/bfdlink.h')
-rw-r--r--include/bfdlink.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/bfdlink.h b/include/bfdlink.h
index 51bbd5e49..f31046dfd 100644
--- a/include/bfdlink.h
+++ b/include/bfdlink.h
@@ -81,6 +81,7 @@ struct bfd_link_hash_entry
{
/* Base hash table entry structure. */
struct bfd_hash_entry root;
+
/* Type of this entry. */
enum bfd_link_hash_type type;
@@ -102,7 +103,8 @@ struct bfd_link_hash_entry
symbol is undefined and becomes defined, this field will
automatically be non-NULL since the symbol will have been on the
undefined symbol list. */
- struct bfd_link_hash_entry *next;
+ struct bfd_link_hash_entry *und_next;
+
/* A union of information depending upon the type. */
union
{