mirror of
git://git.musl-libc.org/musl
synced 2024-12-26 08:32:26 +00:00
74eea628cf
thanks to Peter Mazinger (psm) for pointing many of these issues out and submitting a patch on which this commit is loosely based
14 lines
246 B
C
14 lines
246 B
C
#ifndef _SYS_UIO_H
|
|
#define _SYS_UIO_H
|
|
|
|
#define __NEED_size_t
|
|
#define __NEED_ssize_t
|
|
#define __NEED_struct_iovec
|
|
|
|
#include <bits/alltypes.h>
|
|
|
|
ssize_t readv (int, const struct iovec *, int);
|
|
ssize_t writev (int, const struct iovec *, int);
|
|
|
|
#endif
|