2011-02-12 05:22:29 +00:00
|
|
|
#ifndef _SYS_UIO_H
|
|
|
|
#define _SYS_UIO_H
|
|
|
|
|
2011-11-11 01:40:06 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#define __NEED_size_t
|
|
|
|
#define __NEED_ssize_t
|
2011-02-14 23:41:25 +00:00
|
|
|
#define __NEED_struct_iovec
|
2011-02-12 05:22:29 +00:00
|
|
|
|
|
|
|
#include <bits/alltypes.h>
|
|
|
|
|
|
|
|
ssize_t readv (int, const struct iovec *, int);
|
|
|
|
ssize_t writev (int, const struct iovec *, int);
|
|
|
|
|
2011-11-11 01:40:06 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#endif
|