added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / compiler / clib / include / sys / _iovec.h
blobd554c4d9074a9af81eff2c4bdfab7b7e7abb8db6
1 #ifndef _SYS__IOVEC_H_
2 #define _SYS__IOVEC_H_
3 /*
4 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
5 $Id$
6 */
8 #include <sys/_types.h>
10 struct iovec
12 void *iov_base;
13 size_t iov_len;
16 #endif /* _SYS__IOVEC_H_ */