bionic/linker: change lookup() to return soinfo, not base

This commit is contained in:
Iliyan Malchev
2009-09-28 18:21:30 -07:00
parent 6ed80c8814
commit 9ea64da6c5
3 changed files with 9 additions and 9 deletions

View File

@@ -203,7 +203,7 @@ extern soinfo libdl_info;
soinfo *find_library(const char *name);
unsigned unload_library(soinfo *si);
Elf32_Sym *lookup_in_library(soinfo *si, const char *name);
Elf32_Sym *lookup(const char *name, unsigned *base);
Elf32_Sym *lookup(const char *name, soinfo **found);
const char *linker_get_error(void);
#ifdef ANDROID_ARM_LINKER