blob: 5a46c951af57c6bf8cba26ee84ca98e9952f2b51 [file] [log] [blame]
#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);
}