diff options
Diffstat (limited to 'newlib/libc/machine/spu/sys/uio.h')
-rw-r--r-- | newlib/libc/machine/spu/sys/uio.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/newlib/libc/machine/spu/sys/uio.h b/newlib/libc/machine/spu/sys/uio.h deleted file mode 100644 index 9ed1549f3..000000000 --- a/newlib/libc/machine/spu/sys/uio.h +++ /dev/null @@ -1,26 +0,0 @@ -#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 |