blob: 973db2ee79c38c742b02f452207a519b76089568 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <sys/uio.h>
#include "syscall.h"
ssize_t writev(int fd, const struct iovec *iov, int count)
{
return syscall_cp(SYS_writev, fd, iov, count);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|