diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-08-15 16:50:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-08-15 16:50:20 +0000 |
commit | 0cc70fcf82fefca2d186af4de0b6625a62dd31a0 (patch) | |
tree | 4dc645922acf5cffe0a6d7dd8097528c8a8ea946 /elf | |
parent | f4b8246c52db6b75dc871ef2f87f41e1bef1f7db (diff) | |
download | glibc-0cc70fcf82fefca2d186af4de0b6625a62dd31a0.tar glibc-0cc70fcf82fefca2d186af4de0b6625a62dd31a0.tar.gz glibc-0cc70fcf82fefca2d186af4de0b6625a62dd31a0.tar.bz2 glibc-0cc70fcf82fefca2d186af4de0b6625a62dd31a0.zip |
Update.
1999-08-10 H.J. Lu <hjl@gnu.org>
* resolv/nss_dns/dns-host.c (getanswer_r): Cleanup out-of-
buffer handling.
1999-08-15 Ulrich Drepper <drepper@cygnus.com>
* elf/elf.h: Define ElfXX_Versym.
* elf/link.h (struct link_map): Use ElfXX_Versym for l_versyms
definition.
* stdio-common/vfprintf.c (process_string_arg): Handle precisions
for string output correctly in the wide character case.
Patch by Akira YOSHIYAMA <yosshy@tkf.att.ne.jp>.
* intl/locale.alias: Add catalan.
1999-08-14 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* manual/install.texi (Configuring and compiling): Mention
CFLAGS.
1999-08-15 Ulrich Drepper <drepper@cygnus.com>
* po/pt_BR.po: New file.
1999-08-13 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* math/libm-test.c (yn_test): Adjust deltas for i386.
(ccosh_test): Likewise.
(jn_test): Likewise.
1999-08-15 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/_G_config.h: Get definition of mbstate_t.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/elf.h | 4 | ||||
-rw-r--r-- | elf/link.h | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -56,6 +56,10 @@ typedef uint64_t Elf64_Off; typedef uint16_t Elf32_Section; typedef uint16_t Elf64_Section; +/* Type for version symbol information. */ +typedef Elf32_Half Elf32_Versym; +typedef Elf64_Half Elf64_Versym; + /* The ELF file header. This appears at the start of every ELF file. */ diff --git a/elf/link.h b/elf/link.h index 2de39e5711..9b6e9df7e6 100644 --- a/elf/link.h +++ b/elf/link.h @@ -177,7 +177,7 @@ struct link_map ElfW(Addr) *l_reloc_result; /* Pointer to the version information if available. */ - ElfW(Half) *l_versyms; + ElfW(Versym) *l_versyms; /* String specifying the path where this object was found. */ const char *l_origin; |