summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-04-19 13:31:59 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-04-19 13:31:59 +0000
commit6b3902486151983e34413a0e5a4bead588217855 (patch)
treed16dda0361bd962722494280f8b69cae026cdb0d /usr.bin
parentd17b9a921a16fd6c521bf274142ef4ed0eab1e46 (diff)
Fix a bit, so it's now compiles.
needs more work to do disk stats the way vmstat do.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/systat/disks.c8
-rw-r--r--usr.bin/systat/swap.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/systat/disks.c b/usr.bin/systat/disks.c
index aa42b2c9d76..2098d6f8b52 100644
--- a/usr.bin/systat/disks.c
+++ b/usr.bin/systat/disks.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: disks.c,v 1.2 1996/03/27 19:32:52 niklas Exp $ */
+/* $OpenBSD: disks.c,v 1.3 1996/04/19 13:31:57 mickey Exp $ */
/* $NetBSD: disks.c,v 1.3 1996/03/15 22:19:23 ragge Exp $ */
/*-
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)disks.c 8.1 (Berkeley) 6/6/93";
static char rcsid[] = "$NetBSD: disks.c,v 1.3 1996/03/15 22:19:23 ragge Exp $";
#endif
-static char rcsid[] = "$OpenBSD: disks.c,v 1.2 1996/03/27 19:32:52 niklas Exp $";
+static char rcsid[] = "$OpenBSD: disks.c,v 1.3 1996/04/19 13:31:57 mickey Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -84,8 +84,6 @@ float *dk_mspw;
int dk_ndrive, *dk_select;
char **dr_name;
-#include "names.c" /* XXX */
-
int
dkinit()
{
@@ -128,12 +126,14 @@ dkinit()
if (dk_mspw[i] != 0.0)
dk_select[i] = 1;
}
+#if 0
if (!read_names()) {
free(dr_name);
free(dk_select);
free(dk_mspw);
return(0);
}
+#endif
once = 1;
return(1);
}
diff --git a/usr.bin/systat/swap.c b/usr.bin/systat/swap.c
index c548e973da2..75c9fc99a83 100644
--- a/usr.bin/systat/swap.c
+++ b/usr.bin/systat/swap.c
@@ -64,7 +64,7 @@ static char rcsid[] = "$NetBSD: swap.c,v 1.4 1995/08/31 22:20:19 jtc Exp $";
extern char *getbsize __P((int *headerlenp, long *blocksizep));
void showspace __P((char *header, int hlen, long blocksize));
-kvm_t *kd;
+extern kvm_t *kd;
struct nlist syms[] = {
{ "_swapmap" }, /* list of free swap areas */