diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2017-10-01 17:32:12 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2017-10-01 17:32:12 (GMT) |
commit | 208abfe4182c0dafc230e0377b3efcc6c24be0f9 (patch) | |
tree | 4e084364b0a211ee36a5e8e55b70367f01d720d5 /plugins/readelf | |
parent | 593aee561015251dfd042dc5e00388f63232c45f (diff) |
Defined the ELF support as plugin.
Diffstat (limited to 'plugins/readelf')
-rw-r--r-- | plugins/readelf/header.c | 2 | ||||
-rw-r--r-- | plugins/readelf/program.c | 2 | ||||
-rw-r--r-- | plugins/readelf/program.h | 2 | ||||
-rw-r--r-- | plugins/readelf/reader.c | 2 | ||||
-rw-r--r-- | plugins/readelf/section.c | 4 | ||||
-rw-r--r-- | plugins/readelf/section.h | 2 | ||||
-rw-r--r-- | plugins/readelf/strtab.c | 2 | ||||
-rw-r--r-- | plugins/readelf/strtab.h | 2 |
8 files changed, 9 insertions, 9 deletions
diff --git a/plugins/readelf/header.c b/plugins/readelf/header.c index 33cf107..8b124a4 100644 --- a/plugins/readelf/header.c +++ b/plugins/readelf/header.c @@ -24,7 +24,7 @@ #include "header.h" -#include <format/elf/elf.h> +#include <plugins/elf/elf.h> #include <plugins/fmtp/parser.h> diff --git a/plugins/readelf/program.c b/plugins/readelf/program.c index 107f048..f63d10e 100644 --- a/plugins/readelf/program.c +++ b/plugins/readelf/program.c @@ -30,7 +30,7 @@ #include <i18n.h> #include <common/cpp.h> #include <common/extstr.h> -#include <format/elf/elf-int.h> +#include <plugins/elf/elf-int.h> #include <plugins/fmtp/parser.h> diff --git a/plugins/readelf/program.h b/plugins/readelf/program.h index 0710577..4c4cde4 100644 --- a/plugins/readelf/program.h +++ b/plugins/readelf/program.h @@ -26,7 +26,7 @@ #include <format/preload.h> -#include <format/elf/elf.h> +#include <plugins/elf/elf.h> diff --git a/plugins/readelf/reader.c b/plugins/readelf/reader.c index 6f81b3f..4d766da 100644 --- a/plugins/readelf/reader.c +++ b/plugins/readelf/reader.c @@ -24,7 +24,7 @@ #include "reader.h" -#include <format/elf/elf.h> +#include <plugins/elf/elf.h> #include <plugins/plugin-def.h> diff --git a/plugins/readelf/section.c b/plugins/readelf/section.c index 3a71225..ae3bd6f 100644 --- a/plugins/readelf/section.c +++ b/plugins/readelf/section.c @@ -30,8 +30,8 @@ #include <i18n.h> #include <common/cpp.h> #include <common/extstr.h> -#include <format/elf/elf-int.h> -#include <format/elf/section.h> +#include <plugins/elf/elf-int.h> +#include <plugins/elf/section.h> #include <plugins/fmtp/parser.h> diff --git a/plugins/readelf/section.h b/plugins/readelf/section.h index 60e8f34..33be014 100644 --- a/plugins/readelf/section.h +++ b/plugins/readelf/section.h @@ -26,7 +26,7 @@ #include <format/preload.h> -#include <format/elf/elf.h> +#include <plugins/elf/elf.h> diff --git a/plugins/readelf/strtab.c b/plugins/readelf/strtab.c index dc022cf..d8133fc 100644 --- a/plugins/readelf/strtab.c +++ b/plugins/readelf/strtab.c @@ -29,7 +29,7 @@ #include <arch/raw.h> -#include <format/elf/section.h> +#include <plugins/elf/section.h> diff --git a/plugins/readelf/strtab.h b/plugins/readelf/strtab.h index 89c178d..9adcd46 100644 --- a/plugins/readelf/strtab.h +++ b/plugins/readelf/strtab.h @@ -26,7 +26,7 @@ #include <format/preload.h> -#include <format/elf/elf.h> +#include <plugins/elf/elf.h> |