diff options
author | 2013-07-17 14:40:12 -0700 | |
---|---|---|
committer | 2013-07-17 16:49:05 -0700 | |
commit | fc0e3219edc9a5bf81b166e82fd5db2796eb6a0d (patch) | |
tree | 5fc7f5b941724a62f8e3411df09fae431ff5e3cf /runtime/gc/allocator/dlmalloc.h | |
parent | 56d947fbc9bc2992e2f93112fafb73e50d2aaa7a (diff) |
Fix multiple inclusion guards to match new pathnames
Change-Id: Id7735be1d75bc315733b1773fba45c1deb8ace43
Diffstat (limited to 'runtime/gc/allocator/dlmalloc.h')
-rw-r--r-- | runtime/gc/allocator/dlmalloc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/gc/allocator/dlmalloc.h b/runtime/gc/allocator/dlmalloc.h index 6b02a44ffe..07ebd1c0e3 100644 --- a/runtime/gc/allocator/dlmalloc.h +++ b/runtime/gc/allocator/dlmalloc.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_SRC_GC_ALLOCATOR_DLMALLOC_H_ -#define ART_SRC_GC_ALLOCATOR_DLMALLOC_H_ +#ifndef ART_RUNTIME_GC_ALLOCATOR_DLMALLOC_H_ +#define ART_RUNTIME_GC_ALLOCATOR_DLMALLOC_H_ // Configure dlmalloc for mspaces. #define HAVE_MMAP 0 @@ -37,4 +37,4 @@ extern "C" int dlmalloc_trim(size_t); // pages back to the kernel. extern "C" void DlmallocMadviseCallback(void* start, void* end, size_t used_bytes, void* /*arg*/); -#endif // ART_SRC_GC_ALLOCATOR_DLMALLOC_H_ +#endif // ART_RUNTIME_GC_ALLOCATOR_DLMALLOC_H_ |