diff options
Diffstat (limited to 'elf/link.h')
-rw-r--r-- | elf/link.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/elf/link.h b/elf/link.h index 51740eeeee..a89e25846e 100644 --- a/elf/link.h +++ b/elf/link.h @@ -216,6 +216,12 @@ extern Elf32_Addr _dl_lookup_symbol (const char *undef, Elf32_Addr reloc_addr, int noplt); +/* Look up symbol NAME in MAP's scope and return its run-time address. */ +extern Elf32_Addr _dl_symbol_value (struct link_map *map, const char *name); + + +/* Structure describing the dynamic linker itself. */ +extern struct link_map _dl_rtld_map; /* List of objects currently loaded. */ extern struct link_map *_dl_loaded; |