diff options
Diffstat (limited to 'src/sys/uio/writev.c')
| -rw-r--r-- | src/sys/uio/writev.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/sys/uio/writev.c b/src/sys/uio/writev.c new file mode 100644 index 00000000..44d8aab4 --- /dev/null +++ b/src/sys/uio/writev.c @@ -0,0 +1,10 @@ +#include <sys/uio.h> + +ssize_t writev(int fildes, const struct iovec * iov, int iovcnt) +{ + return -1; +} + +/* +XOPEN(400) +*/ |
