mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
unix: correct pwritev conditional (#4233)
This commit is contained in:
parent
7ba94d3909
commit
fc70430b09
@ -85,7 +85,8 @@
|
||||
#if defined(__CYGWIN__) || \
|
||||
(defined(__HAIKU__) && B_HAIKU_VERSION < B_HAIKU_VERSION_1_PRE_BETA_5) || \
|
||||
(defined(__sun) && !defined(__illumos__)) || \
|
||||
(defined(__APPLE__) && MAC_OS_X_VERSION_MIN_REQUIRED <= 101300)
|
||||
(defined(__APPLE__) && !TARGET_OS_IPHONE && \
|
||||
MAC_OS_X_VERSION_MIN_REQUIRED < 110000)
|
||||
#define preadv(fd, bufs, nbufs, off) \
|
||||
pread(fd, (bufs)->iov_base, (bufs)->iov_len, off)
|
||||
#define pwritev(fd, bufs, nbufs, off) \
|
||||
|
Loading…
x
Reference in New Issue
Block a user