diff options
| author | 2017-01-11 15:24:10 +0000 | |
|---|---|---|
| committer | 2017-01-11 15:24:11 +0000 | |
| commit | e7fcbcb9919e8f1c0fc5935b8a6aeb0b0dec9700 (patch) | |
| tree | 5ead0dab24f15b6ae2c483d1eb2810477ae9c7f8 /libs/androidfw/BackupHelpers.cpp | |
| parent | 216303cdb60412525a716f4df22140b1a439a4a3 (diff) | |
| parent | 52eb4e01a49fe2e94555c000de38bbcbbb13401b (diff) | |
Merge "Replace cutils/log.h and log/logger.h with log/log.h"
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 { |