mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
13 lines
243 B
C++
13 lines
243 B
C++
#include <sys/uio.h>
|
|
#include <errno.h>
|
|
#include <Kernel/Syscall.h>
|
|
|
|
extern "C" {
|
|
|
|
ssize_t writev(int fd, const struct iovec* iov, int iov_count)
|
|
{
|
|
int rc = syscall(SC_writev, fd, iov, iov_count);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
}
|