1 /*-
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
9 *
10 * %sccs.include.redist.c%
11 *
12 * from: @(#)subr_rmap.c 8.1 (Berkeley) 6/10/93
13 */
14
15 #include <sys/param.h>
16 #include <sys/map.h>
17 #include <sys/proc.h>
18
19 void
rminit(a1,a2,a3,a4,a5)20 rminit(a1, a2, a3, a4, a5)
21 struct map *a1;
22 long a2, a3;
23 char *a4;
24 int a5;
25 {
26
27 /*
28 * Body deleted.
29 */
30 return;
31 }
32
33 long
rmalloc(a1,a2)34 rmalloc(a1, a2)
35 struct map *a1;
36 long a2;
37 {
38
39 /*
40 * Body deleted.
41 */
42 return (0);
43 }
44
45 void
rmfree(a1,a2,a3)46 rmfree(a1, a2, a3)
47 struct map *a1;
48 long a2, a3;
49 {
50
51 /*
52 * Body deleted.
53 */
54 return;
55 }
56