|
From: Cyrill G. <gor...@gm...> - 2016-04-07 22:17:18
|
Signed-off-by: Cyrill Gorcunov <gor...@gm...>
---
output/outelf32.c | 2 ++
output/outelf64.c | 2 ++
output/outelfx32.c | 2 ++
3 files changed, 6 insertions(+)
diff --git a/output/outelf32.c b/output/outelf32.c
index 67c0907..12255fd 100644
--- a/output/outelf32.c
+++ b/output/outelf32.c
@@ -83,6 +83,8 @@ static struct elf_symbol *fwds;
static char elf_module[FILENAME_MAX];
extern const struct ofmt of_elf32;
+extern const struct ofmt of_elf64;
+extern const struct ofmt of_elfx32;
static struct ELF_SECTDATA {
void *data;
diff --git a/output/outelf64.c b/output/outelf64.c
index 91d50e8..4730bf6 100644
--- a/output/outelf64.c
+++ b/output/outelf64.c
@@ -82,7 +82,9 @@ static struct elf_symbol *fwds;
static char elf_module[FILENAME_MAX];
+extern const struct ofmt of_elf32;
extern const struct ofmt of_elf64;
+extern const struct ofmt of_elfx32;
static struct ELF_SECTDATA {
void *data;
diff --git a/output/outelfx32.c b/output/outelfx32.c
index b5f62a6..99d92a7 100644
--- a/output/outelfx32.c
+++ b/output/outelfx32.c
@@ -82,6 +82,8 @@ static struct elf_symbol *fwds;
static char elf_module[FILENAME_MAX];
+extern const struct ofmt of_elf32;
+extern const struct ofmt of_elf64;
extern const struct ofmt of_elfx32;
static struct ELF_SECTDATA {
--
2.5.5
|