diff options
author | Dima Zavin <dima@android.com> | 2013-05-06 23:17:58 -0700 |
---|---|---|
committer | Dima Zavin <dima@android.com> | 2013-05-07 16:19:41 -0700 |
commit | 823abb63145c7a7db2b766cf7bb816cbdac1de66 (patch) | |
tree | a1502358a0e52f92aeb41dc8293ab01c82db1fec /tools/aapt/StringPool.cpp | |
parent | e0eb0e90630c19808429a9bcdc9ff8dff085d2e8 (diff) |
aapt: move qsort_r_compat here as it is sole client
This code is only used on the host for MacOS X compatibility.
Apparently, glibc and Apple's libc disagree on the parameter
ordering.
Change-Id: I214edcf2870b6ac88316306ac5af43f1dadf9b2e
Signed-off-by: Dima Zavin <dima@android.com>
Diffstat (limited to 'tools/aapt/StringPool.cpp')
-rw-r--r-- | tools/aapt/StringPool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/StringPool.cpp b/tools/aapt/StringPool.cpp index 839eda5151b0..158b39196cb3 100644 --- a/tools/aapt/StringPool.cpp +++ b/tools/aapt/StringPool.cpp @@ -9,7 +9,7 @@ #include <utils/ByteOrder.h> #include <utils/SortedVector.h> -#include <cutils/qsort_r_compat.h> +#include "qsort_r_compat.h" #if HAVE_PRINTF_ZD # define ZD "%zd" |