1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30 #ifndef _BOOT_ELF_RELOC_H
31 #define _BOOT_ELF_RELOC_H
32
33 #include <sys/elf.h>
34
35 __BEGIN_DECLS
36 int relocate_rel(Elf32_Rel *, Elf32_Addr, char *);
37 int relocate_rela(Elf32_Rela *, Elf32_Addr, char *);
38 __END_DECLS
39
40 #endif
|