/* N.B.:  The Alpha, under OSF/1, does *not* use size_t for the length,
   or for the returned values from readv and writev.  */

struct iovec {
  void *iov_base;
  int   iov_len;
};

/* I'm assuming the iovec structures are const.  I haven't verified
   it.  */
extern int readv (int, const struct iovec *, int);
extern int writev (int, const struct iovec *, int);
