summaryrefslogtreecommitdiff
path: root/src/libunixonacid/openwritevnclose_at.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2017-02-17 22:30:53 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2017-02-17 22:30:53 +0000
commitfdffefb8032922ce7ffe4c00816072a8ff2148fc (patch)
treebc7313151a429c45d8bab8ad8b9dd32f4e51335f /src/libunixonacid/openwritevnclose_at.c
parenta896ca2a8c617e5e00ffd5fc9e69331ad754e5b3 (diff)
downloadskalibs-fdffefb8032922ce7ffe4c00816072a8ff2148fc.tar.xz
More types changes
New disize Add size_t to the autotypes list Delete redundant and replace-libc files dev_t/ino_t pass Big size_t pass More things missing, still not operational yet
Diffstat (limited to 'src/libunixonacid/openwritevnclose_at.c')
-rw-r--r--src/libunixonacid/openwritevnclose_at.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libunixonacid/openwritevnclose_at.c b/src/libunixonacid/openwritevnclose_at.c
index 7cff485..518187a 100644
--- a/src/libunixonacid/openwritevnclose_at.c
+++ b/src/libunixonacid/openwritevnclose_at.c
@@ -1,5 +1,7 @@
/* ISC license. */
+#include <sys/types.h>
+#include <sys/uio.h>
#include <unistd.h>
#include <errno.h>
#include <skalibs/allreadwrite.h>
@@ -7,15 +9,15 @@
#include <skalibs/djbunix.h>
#include <skalibs/unix-transactional.h>
-unsigned int openwritevnclose_at (int dirfd, char const *file, siovec_t const *v, unsigned int n)
+size_t openwritevnclose_at (int dirfd, char const *file, struct iovec const *v, unsigned int n)
{
- register unsigned int r ;
+ size_t r ;
int fd = open_truncatb(dirfd, file) ;
if (fd < 0) return 0 ;
r = allwritev(fd, v, n) ;
if (r < siovec_len(v, n) || fsync(fd) < 0)
{
- register int e = errno ;
+ int e = errno ;
fd_close(fd) ;
errno = e ;
return r ;