summaryrefslogtreecommitdiff
path: root/src/format/elf/elf-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2008-10-29 20:14:05 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2008-10-29 20:14:05 (GMT)
commit8a30afc05eed869865ba4dc9c107119f7ec00fe4 (patch)
tree18743934be1c2355c99788e49efb7a7a43e335f1 /src/format/elf/elf-int.h
parent2e5893f9261ba59e06fadcc6ddfa9a1253e286b3 (diff)
Do not relied on section names anymore.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@39 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/elf/elf-int.h')
-rw-r--r--src/format/elf/elf-int.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/format/elf/elf-int.h b/src/format/elf/elf-int.h
index 02cc2dd..0931654 100644
--- a/src/format/elf/elf-int.h
+++ b/src/format/elf/elf-int.h
@@ -74,16 +74,6 @@ struct _elf_format
-/* En-tĂȘte de section ELF */
-typedef union _Elf_Shdr
-{
- Elf32_Shdr section32; /* Version 32 bits */
- Elf64_Shdr section64; /* Version 64 bits */
-
-} Elf_Shdr;
-
-#define ELF_SHDR(fmt, sec, fld) (fmt->is_32b ? sec.section32.fld : sec.section64.fld)
-
/* En-tĂȘte de programme ELF */
typedef union _Elf_Phdr