blob: ef300ddf81a2b107f28e96d448647b1d9463f368 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include <sys/uio.h>
#include "syscall.h"
#include "libc.h"
ssize_t writev(int fd, const struct iovec *iov, int count)
{
return syscall_cp(SYS_writev, fd, iov, count);
}
|