diff options
| -rw-r--r-- | runtime/gc/allocator/dlmalloc.cc | 2 | ||||
| -rw-r--r-- | runtime/gc/allocator/dlmalloc.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/gc/allocator/dlmalloc.cc b/runtime/gc/allocator/dlmalloc.cc index e747f00c92..dc4e31253f 100644 --- a/runtime/gc/allocator/dlmalloc.cc +++ b/runtime/gc/allocator/dlmalloc.cc @@ -36,7 +36,7 @@ static void art_heap_usage_error(const char* function, void* p); #pragma GCC diagnostic ignored "-Wredundant-decls" #pragma GCC diagnostic ignored "-Wempty-body" #pragma GCC diagnostic ignored "-Wstrict-aliasing" -#include "../../../bionic/libc/upstream-dlmalloc/malloc.c" +#include "../../../external/dlmalloc/malloc.c" #pragma GCC diagnostic pop static void* art_heap_morecore(void* m, intptr_t increment) { diff --git a/runtime/gc/allocator/dlmalloc.h b/runtime/gc/allocator/dlmalloc.h index 0558921a56..50e2622e89 100644 --- a/runtime/gc/allocator/dlmalloc.h +++ b/runtime/gc/allocator/dlmalloc.h @@ -32,7 +32,7 @@ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wredundant-decls" -#include "../../bionic/libc/upstream-dlmalloc/malloc.h" +#include "../../external/dlmalloc/malloc.h" #pragma GCC diagnostic pop #ifdef __ANDROID__ |