2 ** Copyright 2002, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
5 #ifndef _KERNEL_ARCH_ELF_H
6 #define _KERNEL_ARCH_ELF_H
9 #include <elf_private.h>
12 struct elf_image_info
;
19 extern int arch_elf_relocate_rel(struct elf_image_info
*image
,
20 struct elf_image_info
*resolve_image
, elf_rel
*rel
, int rel_len
);
21 extern int arch_elf_relocate_rela(struct elf_image_info
*image
,
22 struct elf_image_info
*resolve_image
, elf_rela
*rel
, int rel_len
);
32 #endif /* _KERNEL_ARCH_ELF_H */