summaryrefslogtreecommitdiff
path: root/bin/ps
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-07-23 19:18:20 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-07-23 19:18:20 +0000
commit349e4a8f0f6579904cc4b14f629cd2216e9a1739 (patch)
tree0090de589979113c125c0d3b9391a4e538fd3653 /bin/ps
parentdeb8a7c0a2a028ce301e5cde084d0237350b545c (diff)
tabify
Diffstat (limited to 'bin/ps')
-rw-r--r--bin/ps/keyword.c8
-rw-r--r--bin/ps/print.c8
2 files changed, 8 insertions, 8 deletions
diff --git a/bin/ps/keyword.c b/bin/ps/keyword.c
index f2048eb9a7c..6cc6a19fb4f 100644
--- a/bin/ps/keyword.c
+++ b/bin/ps/keyword.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: keyword.c,v 1.6 1997/06/18 18:54:05 kstailey Exp $ */
+/* $OpenBSD: keyword.c,v 1.7 1997/07/23 19:18:18 kstailey Exp $ */
/* $NetBSD: keyword.c,v 1.12.6.1 1996/05/30 21:25:13 cgd Exp $ */
/*-
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)keyword.c 8.5 (Berkeley) 4/2/94";
#else
-static char rcsid[] = "$OpenBSD: keyword.c,v 1.6 1997/06/18 18:54:05 kstailey Exp $";
+static char rcsid[] = "$OpenBSD: keyword.c,v 1.7 1997/07/23 19:18:18 kstailey Exp $";
#endif
#endif /* not lint */
@@ -366,7 +366,7 @@ findvar(p)
static int
vcmp(a, b)
- const void *a, *b;
+ const void *a, *b;
{
- return (strcmp(((VAR *)a)->name, ((VAR *)b)->name));
+ return (strcmp(((VAR *)a)->name, ((VAR *)b)->name));
}
diff --git a/bin/ps/print.c b/bin/ps/print.c
index a874bf82225..2a265a3f067 100644
--- a/bin/ps/print.c
+++ b/bin/ps/print.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: print.c,v 1.3 1996/12/14 12:18:09 mickey Exp $ */
+/* $OpenBSD: print.c,v 1.4 1997/07/23 19:18:19 kstailey Exp $ */
/* $NetBSD: print.c,v 1.27 1995/09/29 21:58:12 cgd Exp $ */
/*-
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94";
#else
-static char rcsid[] = "$OpenBSD: print.c,v 1.3 1996/12/14 12:18:09 mickey Exp $";
+static char rcsid[] = "$OpenBSD: print.c,v 1.4 1997/07/23 19:18:19 kstailey Exp $";
#endif
#endif /* not lint */
@@ -449,7 +449,7 @@ wchan(k, ve)
(void)printf("%-*s", v->width, "-");
}
-#define pgtok(a) (((a)*getpagesize())/1024)
+#define pgtok(a) (((a)*getpagesize())/1024)
void
vsize(k, ve)
@@ -462,7 +462,7 @@ vsize(k, ve)
(void)printf("%*d", v->width,
#ifndef NEWVM
pgtok(KI_PROC(k)->p_dsize +
- KI_PROC(k)->p_ssize + KI_EPROC(k)->e_xsize));
+ KI_PROC(k)->p_ssize + KI_EPROC(k)->e_xsize));
#else
pgtok(KI_EPROC(k)->e_vm.vm_dsize + KI_EPROC(k)->e_vm.vm_ssize +
KI_EPROC(k)->e_vm.vm_tsize));