diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2017-08-22 21:38:30 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2017-08-22 21:38:30 (GMT) |
commit | 4fb2ac107092671fe27fc3ebf9fc86dff7c3ec19 (patch) | |
tree | 92cf5860302b4ba485c85fef3062f1179a978560 /src/format/dex | |
parent | 0f73369ad9cd15cb17ae44aadfc035cb12778b93 (diff) |
Reorganized the global variables for the work queue singleton.
Diffstat (limited to 'src/format/dex')
-rwxr-xr-x | src/format/dex/dex.c | 1 | ||||
-rw-r--r-- | src/format/dex/pool.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/format/dex/dex.c b/src/format/dex/dex.c index b0b32a7..c2eaece 100755 --- a/src/format/dex/dex.c +++ b/src/format/dex/dex.c @@ -32,6 +32,7 @@ #include "dex-int.h" #include "pool.h" +#include "../../core/global.h" #include "../../plugins/pglist.h" diff --git a/src/format/dex/pool.c b/src/format/dex/pool.c index 0180b19..a561a8f 100644 --- a/src/format/dex/pool.c +++ b/src/format/dex/pool.c @@ -35,6 +35,7 @@ #include "loading.h" #include "../mangling/demangler.h" #include "../mangling/dex/context.h" +#include "../../core/global.h" |