Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8731d300 authored by Sami Tolvanen's avatar Sami Tolvanen
Browse files

utils: add pwrite64 to Compat.h for Mac

Compat.h has lseek64 and pread64, but it's missing pwrite64.

Change-Id: I02b4adf5a5e15e55e008ff1ba8113a75faf1c4e9
parent fca4821e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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);
}

static inline ssize_t pwrite64(int fd, const void* buf, size_t nbytes, off64_t offset) {
    return pwrite(fd, buf, nbytes, offset);
}

#endif /* __APPLE__ */

#if defined(_WIN32)