Made C++ safe.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15911 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
71848dd62f
commit
fc1e671b53
@ -9,11 +9,19 @@ struct Elf32_Rel;
|
||||
struct Elf32_Rela;
|
||||
struct elf_image_info;
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
extern int arch_elf_relocate_rel(struct elf_image_info *image, const char *sym_prepend,
|
||||
struct elf_image_info *resolve_image, struct Elf32_Rel *rel, int rel_len);
|
||||
extern int arch_elf_relocate_rela(struct elf_image_info *image, const char *sym_prepend,
|
||||
struct elf_image_info *resolve_image, struct Elf32_Rela *rel, int rel_len);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#include <arch_elf.h>
|
||||
|
||||
#endif /* _KERNEL_ARCH_ELF_H */
|
||||
|
Loading…
Reference in New Issue
Block a user