1#ifndef WINCOMPAT_SYS_UIO_H
2#define WINCOMPAT_SYS_UIO_H
3
4struct iovec
5{
6	void 	*iov_base;
7	size_t	 iov_len;
8};
9
10#endif
11