From 6dbca440306b05074aa0b58b20b0d646d408a91a Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Wed, 2 Aug 2006 15:18:49 +0000 Subject: [PATCH] Turn off prototypes for readv and writev until they're defined (properly) in the library. --- include/sys/uio.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/sys/uio.h b/include/sys/uio.h index d4dba19a3..0d4303f07 100644 --- a/include/sys/uio.h +++ b/include/sys/uio.h @@ -15,9 +15,11 @@ struct iovec size_t iov_len; }; +#if 0 _PROTOTYPE(ssize_t readv, (int _fildes, const struct iovec *_iov, int _iovcnt) ); _PROTOTYPE(ssize_t writev, (int _fildes, const struct iovec *_iov, int iovcnt) ); +#endif #endif /* _SYS_UIO_H */ -- 2.44.0