Move libutils off AndroidConfig.h.
Change-Id: Ia0e4a4f968c640eb44317821d2dc6b195f9f490e
This commit is contained in:
parent
c0e8d0fc50
commit
1f8bc86a7d
|
@ -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 */
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
|
||||
#include <utils/String8.h>
|
||||
|
||||
#include <utils/Compat.h>
|
||||
#include <utils/Log.h>
|
||||
#include <utils/Unicode.h>
|
||||
#include <utils/SharedBuffer.h>
|
||||
|
|
Loading…
Reference in New Issue