diff options
author | Elliott Hughes <enh@google.com> | 2015-02-03 21:03:45 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-02-03 21:03:45 +0000 |
commit | 6c6f39678cf41a52826b4b4551f39d8256855f54 (patch) | |
tree | 3567cea7e9f728610e78b0f015d331ae1f701448 /libutils/file.cpp | |
parent | 6974ba4ed430ec3247c3a5c04a2263b4b04ff827 (diff) | |
parent | af4885a4a83ed28c3194131e80bd3b40bc03a2cc (diff) | |
download | system_core-6c6f39678cf41a52826b4b4551f39d8256855f54.tar.gz system_core-6c6f39678cf41a52826b4b4551f39d8256855f54.tar.bz2 system_core-6c6f39678cf41a52826b4b4551f39d8256855f54.zip |
Merge "Fix Mac build."
Diffstat (limited to 'libutils/file.cpp')
-rw-r--r-- | libutils/file.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libutils/file.cpp b/libutils/file.cpp index 15bda7f5f..aa35ff242 100644 --- a/libutils/file.cpp +++ b/libutils/file.cpp @@ -21,6 +21,8 @@ #include <sys/stat.h> #include <sys/types.h> +#include <utils/Compat.h> // For TEMP_FAILURE_RETRY on Darwin. + bool android::ReadFileToString(const std::string& path, std::string* content) { content->clear(); |