From fdffefb8032922ce7ffe4c00816072a8ff2148fc Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Fri, 17 Feb 2017 22:30:53 +0000 Subject: 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 --- src/libunixonacid/openwritenclose_at.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libunixonacid/openwritenclose_at.c') diff --git a/src/libunixonacid/openwritenclose_at.c b/src/libunixonacid/openwritenclose_at.c index fe92a5e..3fea94c 100644 --- a/src/libunixonacid/openwritenclose_at.c +++ b/src/libunixonacid/openwritenclose_at.c @@ -6,15 +6,15 @@ #include #include -unsigned int openwritenclose_at (int dirfd, char const *file, char const *s, unsigned int n) +size_t openwritenclose_at (int dirfd, char const *file, char const *s, size_t n) { - register unsigned int r ; + size_t r ; int fd = open_truncatb(dirfd, file) ; if (fd < 0) return 0 ; r = allwrite(fd, s, n) ; if ((r < n) || (fsync(fd) < 0)) { - register int e = errno ; + int e = errno ; fd_close(fd) ; errno = e ; return r ; -- cgit v1.3.1