diff options
author | Jim Meyering <jim@meyering.net> | 1996-08-31 23:49:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-08-31 23:49:29 +0000 |
commit | bfe2a56ac632a6854856a4b7686b41f5fe39a191 (patch) | |
tree | 83e2aac2a36be23fec724e509c713a0d597d7959 /src | |
parent | c9fff5189792774b8169ce200ba72786646e715b (diff) | |
download | coreutils-bfe2a56ac632a6854856a4b7686b41f5fe39a191.tar.xz |
(utime_now): Protoize.
Reported by David S. Miller (davem@caip.rutgers.edu).
Diffstat (limited to 'src')
-rw-r--r-- | src/touch.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/touch.c b/src/touch.c index c8bcd95f3..7e1ae5fc6 100644 --- a/src/touch.c +++ b/src/touch.c @@ -217,9 +217,7 @@ touch (char *file) Return 0 if successful, -1 if not. */ static int -utime_now (file, filesize) - char *file; - off_t filesize; +utime_now (const char *file, off_t filesize) { int fd; char c; |