blob: f44ce182bad0ab4ec3af9c2b1d47aa1cbfa51597 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#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 __writev (int __fd, const struct iovec *__iovec,
int __count);
#endif
#endif
|