am 34c92f46: am fc2f1e61: Merge "Move libutils off AndroidConfig.h."

* commit '34c92f4652651697a7de7fa10c214afed9a6658a':
  Move libutils off AndroidConfig.h.
This commit is contained in:
Elliott Hughes 2015-07-30 00:15:35 +00:00 committed by Android Git Automerger
commit 92a3d2ba32
2 changed files with 7 additions and 0 deletions

View file

@ -75,4 +75,10 @@ static inline ssize_t pread64(int fd, void* buf, size_t nbytes, off64_t offset)
_rc; })
#endif
#if defined(_WIN32)
#define OS_PATH_SEPARATOR '\\'
#else
#define OS_PATH_SEPARATOR '/'
#endif
#endif /* __LIB_UTILS_COMPAT_H */

View file

@ -16,6 +16,7 @@
#include <utils/String8.h>
#include <utils/Compat.h>
#include <utils/Log.h>
#include <utils/Unicode.h>
#include <utils/SharedBuffer.h>