repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git]
/
compiler
/
clib
/
include
/
sys
/
_iovec.h
blob
d554c4d9074a9af81eff2c4bdfab7b7e7abb8db6
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
*/
7
8
#include <sys/_types.h>
9
10
struct
iovec
11
{
12
void
*
iov_base
;
13
size_t
iov_len
;
14
};
15
16
#endif
/* _SYS__IOVEC_H_ */