One fewer syscall for the win! */
| 58 | #if HAVE_PWRITEV |
| 59 | /* One fewer syscall for the win! */ |
| 60 | static ssize_t gossip_pwritev(int fd, const struct iovec *iov, int iovcnt, |
| 61 | off_t offset) |
| 62 | { |
| 63 | return pwritev(fd, iov, iovcnt, offset); |
| 64 | } |
| 65 | #else /* Hello MacOS! */ |
| 66 | static ssize_t gossip_pwritev(int fd, const struct iovec *iov, int iovcnt, |
| 67 | off_t offset) |