diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2004-04-07 13:11:37 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2004-04-07 13:11:37 +0000 |
commit | d62260efbb210817cdf2745812dff843031c5840 (patch) | |
tree | ebc4ba9c0621c6491f9d8efd979ae4c81228fa93 /usr.bin/make/timestamp.c | |
parent | b6a90d9cabfe2b5212651fce2cc785fffd80893f (diff) |
ISO function declarations, trim a few comments, rename a few variables to
more explicit/more consistent names.
okay otto@
Diffstat (limited to 'usr.bin/make/timestamp.c')
-rw-r--r-- | usr.bin/make/timestamp.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.bin/make/timestamp.c b/usr.bin/make/timestamp.c index 9f518f81b6b..0fe87c4ad06 100644 --- a/usr.bin/make/timestamp.c +++ b/usr.bin/make/timestamp.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: timestamp.c,v 1.1 2001/05/23 12:34:50 espie Exp $ */ +/* $OpenBSD: timestamp.c,v 1.2 2004/04/07 13:11:36 espie Exp $ */ /* * Copyright (c) 2001 Marc Espie. @@ -34,12 +34,10 @@ #include <utime.h> #endif -TIMESTAMP now; /* The time at the start of this whole - * process */ +TIMESTAMP now; /* The time at the start of this whole process */ int -set_times(f) - const char *f; +set_times(const char *f) { #ifdef USE_TIMESPEC struct timeval tv[2]; |