Hi,
This patch fixes the read(2) and write(2) man pages
to accurately reflect the iovec structure defined
in <sys/_iovec.h> and <sys/uio.h>.
--
Craig Rodrigues
http://home.attbi.com/~rodrigc
[EMAIL PROTECTED]
Index: read.2
===================================================================
RCS file: /home/ncvs/src/lib/libc/sys/read.2,v
retrieving revision 1.18
diff -u -r1.18 read.2
--- read.2 2002/12/19 09:40:25 1.18
+++ read.2 2003/01/12 07:05:27
@@ -85,7 +85,7 @@
.Pp
.Bd -literal -offset indent -compact
struct iovec {
- char *iov_base; /* Base address. */
+ void *iov_base; /* Base address. */
size_t iov_len; /* Length. */
};
.Ed
Index: write.2
===================================================================
RCS file: /home/ncvs/src/lib/libc/sys/write.2,v
retrieving revision 1.23
diff -u -r1.23 write.2
--- write.2 2002/12/19 09:40:25 1.23
+++ write.2 2003/01/12 07:05:28
@@ -85,7 +85,7 @@
.Pp
.Bd -literal -offset indent -compact
struct iovec {
- char *iov_base; /* Base address. */
+ void *iov_base; /* Base address. */
size_t iov_len; /* Length. */
};
.Ed