diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-07-08 00:53:24 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-07-08 00:53:24 -0700 |
commit | 70c442caa8296a698b395b8969b9a04d5491d47b (patch) | |
tree | b4bae07225d5d7d0e1d1b21031f614132091d56c /libelf | |
parent | 46d5827cc232c689853b50181b17751aa7574128 (diff) | |
download | elfutils-70c442caa8296a698b395b8969b9a04d5491d47b.tar.gz |
Add support for STB_GNU_UNIQUE to libebl.
Diffstat (limited to 'libelf')
-rw-r--r-- | libelf/ChangeLog | 4 | ||||
-rw-r--r-- | libelf/elf.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/libelf/ChangeLog b/libelf/ChangeLog index a0163db1..5d8ac8ae 100644 --- a/libelf/ChangeLog +++ b/libelf/ChangeLog @@ -1,3 +1,7 @@ +2009-07-08 Ulrich Drepper <drepper@redhat.com> + + * elf.h: Update from glibc. + 2009-06-13 Ulrich Drepper <drepper@redhat.com> * Makefile.am (libelf_a_SOURCES): Replace elf_getshnum.c and diff --git a/libelf/elf.h b/libelf/elf.h index 8fdf74b0..7efdedef 100644 --- a/libelf/elf.h +++ b/libelf/elf.h @@ -444,6 +444,7 @@ typedef struct #define STB_WEAK 2 /* Weak symbol */ #define STB_NUM 3 /* Number of defined types. */ #define STB_LOOS 10 /* Start of OS-specific */ +#define STB_GNU_UNIQUE 10 /* Unique symbol. */ #define STB_HIOS 12 /* End of OS-specific */ #define STB_LOPROC 13 /* Start of processor-specific */ #define STB_HIPROC 15 /* End of processor-specific */ |