URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-newlib/] [newlib-1.17.0/] [newlib/] [libc/] [machine/] [spu/] [sys/] [uio.h] - Rev 9
Compare with Previous | Blame | View Log
#ifndef _SYS_UIO_H #define _SYS_UIO_H #include <sys/types.h> #ifdef __cplusplus extern "C" { #endif /* * Per POSIX */ struct iovec { void *iov_base; size_t iov_len; }; ssize_t readv(int, const struct iovec *, int); ssize_t writev(int, const struct iovec *, int); #ifdef __cplusplus }; #endif #endif