summaryrefslogtreecommitdiff
path: root/src/sys/uio/writev.c
blob: 44d8aab4bb5ff38f06225e33d592e95f1a82bb99 (plain)
1
2
3
4
5
6
7
8
9
10
#include <sys/uio.h>

ssize_t writev(int fildes, const struct iovec * iov, int iovcnt)
{
	return -1;
}

/*
XOPEN(400)
*/