diff options
author | 2003-06-10 22:20:44 +0000 | |
---|---|---|
committer | 2003-06-10 22:20:44 +0000 | |
commit | 1837a5ca509d93cac77d2e89322c0c4869f9215d (patch) | |
tree | 52dbe14a25e44bdf8161f4c51f39a50c072fe221 /usr.bin/time/time.c | |
parent | It would kind of help if the flags member was initialized, otherwise random (diff) | |
download | wireguard-openbsd-1837a5ca509d93cac77d2e89322c0c4869f9215d.tar.xz wireguard-openbsd-1837a5ca509d93cac77d2e89322c0c4869f9215d.zip |
mostly ansi cleanup; pval ok
Diffstat (limited to 'usr.bin/time/time.c')
-rw-r--r-- | usr.bin/time/time.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/usr.bin/time/time.c b/usr.bin/time/time.c index 8c4220342b1..d4067da629b 100644 --- a/usr.bin/time/time.c +++ b/usr.bin/time/time.c @@ -1,4 +1,4 @@ -/* $OpenBSD: time.c,v 1.14 2003/06/03 02:56:18 millert Exp $ */ +/* $OpenBSD: time.c,v 1.15 2003/06/10 22:20:53 deraadt Exp $ */ /* $NetBSD: time.c,v 1.7 1995/06/27 00:34:00 jtc Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)time.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: time.c,v 1.14 2003/06/03 02:56:18 millert Exp $"; +static char rcsid[] = "$OpenBSD: time.c,v 1.15 2003/06/10 22:20:53 deraadt Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -62,9 +62,7 @@ int portableflag; __dead void usage(void); int -main(argc, argv) - int argc; - char **argv; +main(int argc, char *argv[]) { pid_t pid; int ch, status; @@ -194,7 +192,7 @@ main(argc, argv) } __dead void -usage() +usage(void) { extern char *__progname; |