blob: e2787cb04d0d0e6b3c74e78c774c4f99e519c7e7 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef PRELINK_INFO_H
#define PRELINK_INFO_H
#ifdef SUPPORT_ANDROID_PRELINK_TAGS
int check_prelinked(const char *fname, int elf_little, long *prelink_addr);
void setup_prelink_info(const char *fname, int elf_little, long base);
#endif
#endif/*PRELINK_INFO_H*/
|