summaryrefslogtreecommitdiff
path: root/usr.bin/make/timestamp.c
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2004-04-07 13:11:37 +0000
committerMarc Espie <espie@cvs.openbsd.org>2004-04-07 13:11:37 +0000
commitd62260efbb210817cdf2745812dff843031c5840 (patch)
treeebc4ba9c0621c6491f9d8efd979ae4c81228fa93 /usr.bin/make/timestamp.c
parentb6a90d9cabfe2b5212651fce2cc785fffd80893f (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.c8
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];