* winsup/cygwin/include/sys/uio.h: readv: Correct prototype

writev: ditto.
This commit is contained in:
Corinna Vinschen
2000-12-06 22:42:26 +00:00
parent ec270d3148
commit 81e615de98
2 changed files with 7 additions and 2 deletions

View File

@ -19,8 +19,8 @@ struct iovec {
int iov_len;
};
extern int readv __P ((int filedes, const struct iovec *vector, size_t count));
extern int writev __P ((int filedes, const struct iovec *vector, size_t count));
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