diff options
| author | 2017-01-11 17:12:59 +0000 | |
|---|---|---|
| committer | 2017-01-11 17:13:02 +0000 | |
| commit | 7a98aee66a277a8e336180f42b439835cc23512b (patch) | |
| tree | dd22404df2673140a01610478af39267d27b4ba8 /libs/androidfw/BackupHelpers.cpp | |
| parent | 74bf35017635f896c449f78d37144124d445b918 (diff) | |
| parent | db15537e6e0d35c7ed3b1bef45e421760be70683 (diff) | |
Merge "resolve merge conflicts of 082a1721b516 to master"
Diffstat (limited to 'libs/androidfw/BackupHelpers.cpp')
| -rw-r--r-- | libs/androidfw/BackupHelpers.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/libs/androidfw/BackupHelpers.cpp b/libs/androidfw/BackupHelpers.cpp index 78e9d91c4d67..8bfe2b6a259a 100644 --- a/libs/androidfw/BackupHelpers.cpp +++ b/libs/androidfw/BackupHelpers.cpp @@ -18,23 +18,22 @@ #include <androidfw/BackupHelpers.h> -#include <utils/KeyedVector.h> -#include <utils/ByteOrder.h> -#include <utils/String8.h> - #include <errno.h> -#include <sys/types.h> -#include <sys/uio.h> -#include <sys/stat.h> -#include <sys/time.h> // for utimes +#include <fcntl.h> #include <stdio.h> #include <stdlib.h> +#include <sys/stat.h> +#include <sys/types.h> +#include <sys/time.h> // for utimes +#include <sys/uio.h> #include <unistd.h> #include <utime.h> -#include <fcntl.h> #include <zlib.h> -#include <cutils/log.h> +#include <log/log.h> +#include <utils/ByteOrder.h> +#include <utils/KeyedVector.h> +#include <utils/String8.h> namespace android { |