blob: 7d67d67c0a39cb299b4828be3641b82e289f6859 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _SYS_UIO_H
#include <misc/sys/uio.h>
#ifndef _ISOMAC
/* Now define the internal interfaces. */
extern ssize_t __readv (int __fd, const struct iovec *__iovec,
int __count);
extern ssize_t __libc_readv (int __fd, const struct iovec *__iovec,
int __count);
extern ssize_t __writev (int __fd, const struct iovec *__iovec,
int __count);
extern ssize_t __libc_writev (int __fd, const struct iovec *__iovec,
int __count);
#endif
#endif
|