Added new prototype declarations and cleaned up.
[unix-history] / usr / src / include / kvm.h
... / ...
CommitLineData
1/*-
2 * Copyright (c) 1989 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
6 *
7 * @(#)kvm.h 5.2 (Berkeley) %G%
8 */
9
10#include <sys/cdefs.h>
11
12/* Default version symbol. */
13#define VRS_SYM "_version"
14#define VRS_KEY "VERSION"
15
16__BEGIN_DECLS
17char *kvm_getargs __P((const struct proc *, const struct user *));
18struct eproc *kvm_geteproc __P((const struct proc *));
19char *kvm_geterr __P((void));
20struct user *kvm_getu __P((const struct proc *));
21struct proc *kvm_nextproc __P((void));
22__END_DECLS