Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git] / newlib / libc / machine / spu / sys / uio.h
blob9ed1549f3f8a4bc096aff6f925170fd12bd736aa
1 #ifndef _SYS_UIO_H
2 #define _SYS_UIO_H
4 #include <sys/types.h>
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
11 * Per POSIX
14 struct iovec {
15 void *iov_base;
16 size_t iov_len;
19 ssize_t readv(int, const struct iovec *, int);
20 ssize_t writev(int, const struct iovec *, int);
22 #ifdef __cplusplus
24 #endif
26 #endif