]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/generic/iovec.h
Update.
[thirdparty/glibc.git] / sysdeps / generic / iovec.h
CommitLineData
857fa1b8
RM
1/* `struct iovec' -- Structure describing a section of memory. */
2
3struct iovec
4{
5 /* Starting address. */
6 __ptr_t iov_base;
7 /* Length in bytes. */
8 size_t iov_len;
9};