summaryrefslogtreecommitdiff
path: root/src/libstddjb/allwritev.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2017-02-15 17:40:40 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2017-02-15 17:40:40 +0000
commita896ca2a8c617e5e00ffd5fc9e69331ad754e5b3 (patch)
treef49a8382b9999b5aa00c0885eedd5c5c3a233e55 /src/libstddjb/allwritev.c
parent00c9cb1b22cc17c4db573e0e613a5f116ff0092e (diff)
downloadskalibs-a896ca2a8c617e5e00ffd5fc9e69331ad754e5b3.tar.xz
add arc4random_addrandom sysdep; next batch of types changes.
The library isn't supposed to be functional yet: there are still a lot of type mismatches.
Diffstat (limited to 'src/libstddjb/allwritev.c')
-rw-r--r--src/libstddjb/allwritev.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libstddjb/allwritev.c b/src/libstddjb/allwritev.c
index d7195a8..dc343a4 100644
--- a/src/libstddjb/allwritev.c
+++ b/src/libstddjb/allwritev.c
@@ -1,9 +1,10 @@
/* ISC license. */
+#include <sys/types.h>
+#include <sys/uio.h>
#include <skalibs/allreadwrite.h>
-#include <skalibs/siovec.h>
-unsigned int allwritev (int fd, siovec_t const *v, unsigned int vlen)
+size_t allwritev (int fd, struct iovec const *v, unsigned int vlen)
{
- return allreadwritev(&fd_writesv, fd, v, vlen) ;
+ return allreadwritev(&fd_writev, fd, v, vlen) ;
}