Welcome to mirror list, hosted at ThFree Co, Russian Federation.

uio.h « sys « include « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dad9dc17fe584dd7992c903eacca277331e864c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef _UIO_H_
#define _UIO_H_

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

/* For size_t */
#include <stddef.h>
/* For ssize_t */
#include <sys/types.h>

/*
 * Define the uio buffers used for writev, readv.
 */

struct iovec {
	caddr_t iov_base;
	int iov_len;
};

#ifdef __cplusplus
};
#endif /* __cplusplus */
#endif /* _UIO_H_ */