diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/formats.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/formats.c b/src/core/formats.c index bf58c2e..0e1e8e7 100644 --- a/src/core/formats.c +++ b/src/core/formats.c @@ -34,7 +34,6 @@ #include "../format/dwarf/v2/dwarf.h" #include "../format/dwarf/v3/dwarf.h" #include "../format/dwarf/v4/dwarf.h" -#include "../format/elf/elf.h" @@ -200,8 +199,6 @@ bool load_hard_coded_formats_definitions(void) result &= register_format_matcher(dwarf_is_matching, NULL); - result &= register_format_matcher(elf_is_matching, NULL); - /* Chargements */ result &= register_format_loader("dex", "Dalvik Executable format", g_dex_format_new); @@ -215,8 +212,6 @@ bool load_hard_coded_formats_definitions(void) result &= register_format_loader("dwarf_v4", "Debugging With Arbitrary Record Formats (v4)", g_dwarfv4_format_new); - result &= register_format_loader("elf", "Executable and Linkable Format", g_elf_format_new); - return result; } |