xref: /original-bsd/include/kvm.h (revision 4cda19ca)
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) 02/12/91
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
17 char		*kvm_getargs __P((const struct proc *, const struct user *));
18 struct eproc	*kvm_geteproc __P((const struct proc *));
19 char		*kvm_geterr __P((void));
20 struct user	*kvm_getu __P((const struct proc *));
21 struct proc	*kvm_nextproc __P((void));
22 __END_DECLS
23