diff options
author | 2002-02-17 19:42:18 +0000 | |
---|---|---|
committer | 2002-02-17 19:42:18 +0000 | |
commit | f3c3a9c6dfeacc6897a86575161336d2a48e6df1 (patch) | |
tree | d14445e214d1b0db31b5a8d6f8b1f2938a91057e /lib/libkvm/kvm.c | |
parent | Document that both localhost and the local hostname needs to be able to (diff) | |
download | wireguard-openbsd-f3c3a9c6dfeacc6897a86575161336d2a48e6df1.tar.xz wireguard-openbsd-f3c3a9c6dfeacc6897a86575161336d2a48e6df1.zip |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'lib/libkvm/kvm.c')
-rw-r--r-- | lib/libkvm/kvm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libkvm/kvm.c b/lib/libkvm/kvm.c index 73865047e5f..a1b256bcf5e 100644 --- a/lib/libkvm/kvm.c +++ b/lib/libkvm/kvm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kvm.c,v 1.27 2002/02/16 21:27:26 millert Exp $ */ +/* $OpenBSD: kvm.c,v 1.28 2002/02/17 19:42:25 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.27 2002/02/16 21:27:26 millert Exp $"; +static char *rcsid = "$OpenBSD: kvm.c,v 1.28 2002/02/17 19:42:25 millert Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -74,8 +74,8 @@ static char *rcsid = "$OpenBSD: kvm.c,v 1.27 2002/02/16 21:27:26 millert Exp $"; 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 kvm_t *_kvm_open(kvm_t *, const char *, const char *, const char *, + int, char *); static int clear_gap(kvm_t *, FILE *, int); char * |