summaryrefslogtreecommitdiff
path: root/src/format/elf/format_elf.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2008-07-29 22:31:55 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2008-07-29 22:31:55 (GMT)
commit57758c2cd11938e3e4c6e45b983cee4c2269ff44 (patch)
treeade6e434f0a5e68dec379c20432a09dd1cc75a1a /src/format/elf/format_elf.h
parent4d004094424bb1fc52082f2e442c4c43a5525fe1 (diff)
Loaded the executable part of an ELF file.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@10 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/elf/format_elf.h')
-rw-r--r--src/format/elf/format_elf.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/format/elf/format_elf.h b/src/format/elf/format_elf.h
index 894623a..feca71d 100644
--- a/src/format/elf/format_elf.h
+++ b/src/format/elf/format_elf.h
@@ -26,9 +26,15 @@
+#include <stdbool.h>
+#include <stdint.h>
+#include <sys/types.h>
+bool find_text_data(const uint8_t *content, off_t *, off_t *);
+
+
#endif /* _FORMAT_ELF_H */