diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/futimesat.c | 5 | ||||
-rw-r--r-- | misc/utimes.c | 4 |
2 files changed, 2 insertions, 7 deletions
diff --git a/misc/futimesat.c b/misc/futimesat.c index c675aa5ef1..118f6c6812 100644 --- a/misc/futimesat.c +++ b/misc/futimesat.c @@ -24,10 +24,7 @@ /* Change the access time of FILE relative to FD to TVP[0] and the modification time of FILE to TVP[1]. */ int -futimesat (fd, file, tvp) - int fd; - const char *file; - const struct timeval tvp[2]; +futimesat (int fd, const char *file, const struct timeval tvp[2]) { if (fd < 0 && (file == NULL diff --git a/misc/utimes.c b/misc/utimes.c index 6b969e7b50..c8d6f58e8e 100644 --- a/misc/utimes.c +++ b/misc/utimes.c @@ -22,9 +22,7 @@ /* Change the access time of FILE to TVP[0] and the modification time of FILE to TVP[1]. */ int -__utimes (file, tvp) - const char *file; - const struct timeval tvp[2]; +__utimes (const char *file, const struct timeval tvp[2]) { if (file == NULL) { |