add correct copyright notice...
[unix-history] / usr / src / sys / vm / vm_user.h
CommitLineData
175f072e
KM
1/*
2 * Copyright (c) 1986, Avadis Tevanian, Jr., Michael Wayne Young
3 * Copyright (c) 1987 Carnegie-Mellon University
4 * Copyright (c) 1991 Regents of the University of California.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * The Mach Operating System project at Carnegie-Mellon University.
9 *
10 * The CMU software License Agreement specifies the terms and conditions
11 * for use and redistribution.
12 *
13 * @(#)vm_user.h 7.1 (Berkeley) %G%
14 */
15
16/*
17 * Kernel memory management definitions.
18 */
19
20#ifndef _VM_USER_
21#define _VM_USER_
22
23int vm_allocate();
24int vm_deallocate();
25int vm_inherit();
26int vm_protect();
27int vm_statistics();
28
29#endif _VM_USER_