blob: efa84fdab37a120a01f634ef2fd123de7204dfcd [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001#ifndef PRELINK_INFO_H
2#define PRELINK_INFO_H
3#ifdef SUPPORT_ANDROID_PRELINK_TAGS
4
5int check_prelinked(const char *fname, int elf_little, long *prelink_addr);
Hristo Bojinov96be7202010-08-02 10:26:17 -07006int check_retouched(const char *fname, int elf_little,
7 unsigned int *retouch_byte_cnt, char *retouch_buf);
8void retouch_dump(const char *fname, int elf_little,
9 unsigned int retouch_byte_cnt, char *retouch_buf);
The Android Open Source Project88b60792009-03-03 19:28:42 -080010void setup_prelink_info(const char *fname, int elf_little, long base);
11
12#endif
13#endif/*PRELINK_INFO_H*/