Make UEFI boot-platform build again
[haiku.git] / headers / private / kernel / arch / elf.h
blobd2b10f442ae5e0043ecea2a12a4060d2eab0c045
1 /*
2 ** Copyright 2002, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
4 */
5 #ifndef _KERNEL_ARCH_ELF_H
6 #define _KERNEL_ARCH_ELF_H
9 #include <elf_private.h>
12 struct elf_image_info;
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
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);
24 #ifdef __cplusplus
26 #endif
29 #include <arch_elf.h>
32 #endif /* _KERNEL_ARCH_ELF_H */