Turn off prototypes for readv and writev until they're defined

(properly) in the library.
This commit is contained in:
Ben Gras 2006-08-02 15:18:49 +00:00
parent 5d8c07b3f2
commit 6dbca44030

View file

@ -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 */