const char ** => char * const *
[unix-history] / usr / src / include / kvm.h
CommitLineData
c147819e
MT
1/*-
2 * Copyright (c) 1989 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
6 *
75992bbd 7 * @(#)kvm.h 5.2 (Berkeley) %G%
c147819e
MT
8 */
9
8d636677 10#include <sys/cdefs.h>
c147819e 11
75992bbd
KB
12/* Default version symbol. */
13#define VRS_SYM "_version"
14#define VRS_KEY "VERSION"
c147819e 15
8d636677 16__BEGIN_DECLS
75992bbd
KB
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));
8d636677 22__END_DECLS