]>
Commit | Line | Data |
---|---|---|
bdbf022d | 1 | #ifndef _SYS_UIO_H |
28f540f4 | 2 | #include <misc/sys/uio.h> |
bdbf022d | 3 | |
31341567 | 4 | #ifndef _ISOMAC |
bdbf022d | 5 | /* Now define the internal interfaces. */ |
0396e69d | 6 | extern ssize_t __readv (int __fd, const struct iovec *__iovec, |
c19559b0 | 7 | int __count); |
d6daff12 | 8 | libc_hidden_proto (__readv) |
0396e69d | 9 | extern ssize_t __writev (int __fd, const struct iovec *__iovec, |
c19559b0 | 10 | int __count); |
d6daff12 | 11 | libc_hidden_proto (__writev) |
52bd9381 AZ |
12 | |
13 | /* Used for p{read,write}{v64}v2 implementation. */ | |
14 | libc_hidden_proto (preadv) | |
15 | libc_hidden_proto (preadv64) | |
16 | libc_hidden_proto (pwritev) | |
17 | libc_hidden_proto (pwritev64) | |
bdbf022d | 18 | #endif |
31341567 | 19 | #endif |