summaryrefslogtreecommitdiff
path: root/src/libstddjb/touch.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/libstddjb/touch.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/libstddjb/touch.c')
-rw-r--r--src/libstddjb/touch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstddjb/touch.c b/src/libstddjb/touch.c
index d85c483..d270251 100644
--- a/src/libstddjb/touch.c
+++ b/src/libstddjb/touch.c
@@ -11,7 +11,7 @@
int touch (char const *file)
{
- register int fd = open_create(file) ;
+ int fd = open_create(file) ;
if (fd < 0) return 0 ;
if (futimens(fd, 0) < 0) return 0 ;
fd_close(fd) ;
@@ -27,7 +27,7 @@ int touch (char const *file)
int touch (char const *file)
{
- register int fd = open_create(file) ;
+ int fd = open_create(file) ;
if (fd < 0) return 0 ;
if (futimes(fd, 0) < 0) return 0 ;
fd_close(fd) ;
@@ -41,7 +41,7 @@ int touch (char const *file)
int touch (char const *file)
{
- register int fd = open_create(file) ;
+ int fd = open_create(file) ;
if (fd < 0) return 0 ;
fd_close(fd) ;
if (utimes(file, 0) < 0) return 0 ;