mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-17 18:40:14 +00:00
10 lines
177 B
C
10 lines
177 B
C
|
/* `struct iovec' -- Structure describing a section of memory. */
|
||
|
|
||
|
struct iovec
|
||
|
{
|
||
|
/* Starting address. */
|
||
|
__ptr_t iov_base;
|
||
|
/* Length in bytes. */
|
||
|
size_t iov_len;
|
||
|
};
|