newlib/winsup/cygwin/include/sys/uio.h

28 lines
459 B
C
Raw Normal View History

2000-02-17 20:38:33 +01:00
#ifndef _UIO_H_
#define _UIO_H_
/* For size_t */
#include <stddef.h>
/* For ssize_t */
#include <sys/types.h>
#include <sys/cdefs.h>
__BEGIN_DECLS
2000-02-17 20:38:33 +01:00
/*
* Define the uio buffers used for writev, readv.
*/
struct iovec {
caddr_t iov_base;
int iov_len;
};
extern ssize_t readv __P ((int filedes, const struct iovec *vector, int count));
extern ssize_t writev __P ((int filedes, const struct iovec *vector, int count));
__END_DECLS
2000-02-17 20:38:33 +01:00
#endif /* _UIO_H_ */