Namespace: preadv() and pwritev() are extensions.

This commit is contained in:
David Schultz 2009-03-14 19:07:58 +00:00
parent ce76f2cfa7
commit f4ab27b927
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189816

View File

@ -106,8 +106,10 @@ int uiomoveco(void *cp, int n, struct uio *uio, int disposable);
__BEGIN_DECLS
ssize_t readv(int, const struct iovec *, int);
ssize_t writev(int, const struct iovec *, int);
#if __BSD_VISIBLE
ssize_t preadv(int, const struct iovec *, int, off_t);
ssize_t pwritev(int, const struct iovec *, int, off_t);
#endif
__END_DECLS
#endif /* _KERNEL */