summaryrefslogtreecommitdiff
path: root/sysdeps/generic/iovec.h
blob: 307fc6a18a95c3c988478e83b5c9e5977b70d47c (plain)
1
2
3
4
5
6
7
8
9
/* `struct iovec' -- Structure describing a section of memory.  */

struct iovec
{
  /* Starting address.  */
  __ptr_t iov_base;
  /* Length in bytes.  */
  size_t iov_len;
};