diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-04-19 13:31:59 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-04-19 13:31:59 +0000 |
commit | 6b3902486151983e34413a0e5a4bead588217855 (patch) | |
tree | d16dda0361bd962722494280f8b69cae026cdb0d /usr.bin/systat/disks.c | |
parent | d17b9a921a16fd6c521bf274142ef4ed0eab1e46 (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/systat/disks.c')
-rw-r--r-- | usr.bin/systat/disks.c | 8 |
1 files changed, 4 insertions, 4 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); } |