]> git.ipfire.org Git - thirdparty/glibc.git/blob - include/sys/uio.h
posix: Implement preadv2 and pwritev2
[thirdparty/glibc.git] / include / sys / uio.h
1 #ifndef _SYS_UIO_H
2 #include <misc/sys/uio.h>
3
4 #ifndef _ISOMAC
5 /* Now define the internal interfaces. */
6 extern ssize_t __readv (int __fd, const struct iovec *__iovec,
7 int __count);
8 extern ssize_t __writev (int __fd, const struct iovec *__iovec,
9 int __count);
10
11 /* Used for p{read,write}{v64}v2 implementation. */
12 libc_hidden_proto (preadv)
13 libc_hidden_proto (preadv64)
14 libc_hidden_proto (pwritev)
15 libc_hidden_proto (pwritev64)
16 #endif
17 #endif