summaryrefslogtreecommitdiffstats
path: root/usr.bin/time/time.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2002-05-26 09:24:35 +0000
committerderaadt <deraadt@openbsd.org>2002-05-26 09:24:35 +0000
commit13ee8a54b862cc0dfd91f39c641da06af64cc2b2 (patch)
treecc15bdee8a5aa91ccbc87bc82fc9585d9342b76d /usr.bin/time/time.c
parent- CPU_MAXID and CPU_CHIPSET were swapped in cpu.h (diff)
downloadwireguard-openbsd-13ee8a54b862cc0dfd91f39c641da06af64cc2b2.tar.xz
wireguard-openbsd-13ee8a54b862cc0dfd91f39c641da06af64cc2b2.zip
pid_t cleanup
Diffstat (limited to 'usr.bin/time/time.c')
-rw-r--r--usr.bin/time/time.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/time/time.c b/usr.bin/time/time.c
index f240cae5759..51d90ee646c 100644
--- a/usr.bin/time/time.c
+++ b/usr.bin/time/time.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: time.c,v 1.12 2002/02/16 21:27:55 millert Exp $ */
+/* $OpenBSD: time.c,v 1.13 2002/05/26 09:27:10 deraadt Exp $ */
/* $NetBSD: time.c,v 1.7 1995/06/27 00:34:00 jtc Exp $ */
/*
@@ -44,7 +44,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.12 2002/02/16 21:27:55 millert Exp $";
+static char rcsid[] = "$OpenBSD: time.c,v 1.13 2002/05/26 09:27:10 deraadt Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -70,7 +70,7 @@ main(argc, argv)
int argc;
char **argv;
{
- int pid;
+ pid_t pid;
int ch, status;
struct timeval before, after;
struct rusage ru;