source: trunk/libs/newlib/src/newlib/libc/machine/spu/sys/uio.h @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 315 bytes
Line 
1#ifndef _SYS_UIO_H
2#define _SYS_UIO_H
3
4#include <sys/types.h>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10/*
11 * Per POSIX
12 */
13
14struct iovec {
15  void   *iov_base;
16  size_t  iov_len;
17};
18
19ssize_t readv(int, const struct iovec *, int);
20ssize_t writev(int, const struct iovec *, int);
21
22#ifdef __cplusplus
23};
24#endif
25
26#endif
Note: See TracBrowser for help on using the repository browser.