diff options
Diffstat (limited to 'lib/libkvm/kvm.c')
-rw-r--r-- | lib/libkvm/kvm.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libkvm/kvm.c b/lib/libkvm/kvm.c index de636e7c136..73865047e5f 100644 --- a/lib/libkvm/kvm.c +++ b/lib/libkvm/kvm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kvm.c,v 1.26 2001/11/21 20:16:16 drahn Exp $ */ +/* $OpenBSD: kvm.c,v 1.27 2002/02/16 21:27:26 millert Exp $ */ /* $NetBSD: kvm.c,v 1.43 1996/05/05 04:31:59 gwr Exp $ */ /*- @@ -42,7 +42,7 @@ #if 0 static char sccsid[] = "@(#)kvm.c 8.2 (Berkeley) 2/13/94"; #else -static char *rcsid = "$OpenBSD: kvm.c,v 1.26 2001/11/21 20:16:16 drahn Exp $"; +static char *rcsid = "$OpenBSD: kvm.c,v 1.27 2002/02/16 21:27:26 millert Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -72,11 +72,11 @@ static char *rcsid = "$OpenBSD: kvm.c,v 1.26 2001/11/21 20:16:16 drahn Exp $"; #include "kvm_private.h" -static int kvm_dbopen __P((kvm_t *, const char *)); -static int _kvm_get_header __P((kvm_t *)); +static int kvm_dbopen(kvm_t *, const char *); +static int _kvm_get_header(kvm_t *); static kvm_t *_kvm_open __P((kvm_t *, const char *, const char *, const char *, int, char *)); -static int clear_gap __P((kvm_t *, FILE *, int)); +static int clear_gap(kvm_t *, FILE *, int); char * kvm_geterr(kd) |