summaryrefslogtreecommitdiff
path: root/src/libunixonacid/openwritenclose_tmp.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/openwritenclose_tmp.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/openwritenclose_tmp.c')
-rw-r--r--src/libunixonacid/openwritenclose_tmp.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libunixonacid/openwritenclose_tmp.c b/src/libunixonacid/openwritenclose_tmp.c
index 1ada80b..5b3fe15 100644
--- a/src/libunixonacid/openwritenclose_tmp.c
+++ b/src/libunixonacid/openwritenclose_tmp.c
@@ -1,11 +1,13 @@
/* ISC license. */
-#include <skalibs/uint64.h>
+#include <sys/types.h>
+#include <skalibs/types.h>
#include <skalibs/stralloc.h>
#include <skalibs/unix-transactional.h>
-int openwritenclose_tmp (char const *fn, char const *s, unsigned int len, stralloc *tmp)
+int openwritenclose_tmp (char const *fn, char const *s, size_t len, stralloc *tmp)
{
- uint64 dev, ino ;
+ dev_t dev ;
+ ino_t ino ;
return openwritenclose_devino_tmp(fn, s, len, &dev, &ino, tmp) ;
}