am eccf0a45: Merge "utils: add pwrite64 to Compat.h for Mac"

* commit 'eccf0a4502293d628152888be85d1cd6fa0b4751':
  utils: add pwrite64 to Compat.h for Mac
This commit is contained in:
Sami Tolvanen 2015-09-28 16:02:35 +00:00 committed by Android Git Automerger
commit c6ca7a5a31

View file

@ -33,6 +33,10 @@ static inline ssize_t pread64(int fd, void* buf, size_t nbytes, off64_t offset)
return pread(fd, buf, nbytes, offset); return pread(fd, buf, nbytes, offset);
} }
static inline ssize_t pwrite64(int fd, const void* buf, size_t nbytes, off64_t offset) {
return pwrite(fd, buf, nbytes, offset);
}
#endif /* __APPLE__ */ #endif /* __APPLE__ */
#if defined(_WIN32) #if defined(_WIN32)