/*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * Chris Torek. * * %sccs.include.redist.c% * * @(#)fvwrite.h 8.1 (Berkeley) 06/04/93 */ /* * I/O descriptors for __sfvwrite(). */ struct __siov { void *iov_base; size_t iov_len; }; struct __suio { struct __siov *uio_iov; int uio_iovcnt; int uio_resid; }; #if __STDC__ || c_plusplus extern int __sfvwrite(FILE *, struct __suio *); #else extern int __sfvwrite(); #endif