diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-01-30 20:53:24 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-01-30 20:53:24 (GMT) |
commit | 4132223466dcabc19a1b6f0178adf1c1a35b07ad (patch) | |
tree | ad5ef2262e8e1855c9c7f23a0f11f560039d54c6 /plugins | |
parent | 896b31fbbef2fba442566a422fa4d409771b61dd (diff) |
Moved the mangling related code.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/dex/pool.c | 4 | ||||
-rw-r--r-- | plugins/elf/symbols.c | 2 | ||||
-rw-r--r-- | plugins/mobicore/symbols.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/plugins/dex/pool.c b/plugins/dex/pool.c index 3c97da3..19e9e36 100644 --- a/plugins/dex/pool.c +++ b/plugins/dex/pool.c @@ -30,8 +30,8 @@ #include <i18n.h> #include <core/global.h> -#include <format/mangling/demangler.h> -#include <format/mangling/dex/context.h> +#include <mangling/demangler.h> +#include <mangling/dex/context.h> #include "dex-int.h" diff --git a/plugins/elf/symbols.c b/plugins/elf/symbols.c index dbf3305..de4d21a 100644 --- a/plugins/elf/symbols.c +++ b/plugins/elf/symbols.c @@ -37,7 +37,7 @@ #include <core/global.h> #include <core/logs.h> #include <format/symiter.h> -#include <format/mangling/demangler.h> +#include <mangling/demangler.h> #include "dynamic.h" diff --git a/plugins/mobicore/symbols.c b/plugins/mobicore/symbols.c index ec2dd34..36128d2 100644 --- a/plugins/mobicore/symbols.c +++ b/plugins/mobicore/symbols.c @@ -27,7 +27,7 @@ #include <malloc.h> -#include <format/mangling/demangler.h> +#include <mangling/demangler.h> #include "mclf-int.h" |