1*65791Smckusick /*-
2*65791Smckusick  * Copyright (c) 1982, 1986, 1993
3*65791Smckusick  *	The Regents of the University of California.  All rights reserved.
4*65791Smckusick  * (c) UNIX System Laboratories, Inc.
5*65791Smckusick  * All or some portions of this file are derived from material licensed
6*65791Smckusick  * to the University of California by American Telephone and Telegraph
7*65791Smckusick  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8*65791Smckusick  * the permission of UNIX System Laboratories, Inc.
949677Smckusick  *
1049677Smckusick  * %sccs.include.redist.c%
1149677Smckusick  *
12*65791Smckusick  *	from: @(#)subr_rmap.c	8.1 (Berkeley) 6/10/93
1349677Smckusick  */
1449677Smckusick 
15*65791Smckusick #include <sys/param.h>
16*65791Smckusick #include <sys/map.h>
17*65791Smckusick #include <sys/proc.h>
1849677Smckusick 
19*65791Smckusick void
rminit(a1,a2,a3,a4,a5)20*65791Smckusick rminit(a1, a2, a3, a4, a5)
21*65791Smckusick 	struct map *a1;
22*65791Smckusick 	long a2, a3;
23*65791Smckusick 	char *a4;
24*65791Smckusick 	int a5;
2549677Smckusick {
2649677Smckusick 
2749677Smckusick 	/*
2849677Smckusick 	 * Body deleted.
2949677Smckusick 	 */
3049677Smckusick 	return;
3149677Smckusick }
3249677Smckusick 
3349677Smckusick long
rmalloc(a1,a2)34*65791Smckusick rmalloc(a1, a2)
35*65791Smckusick 	struct map *a1;
36*65791Smckusick 	long a2;
3749677Smckusick {
3849677Smckusick 
3949677Smckusick 	/*
4049677Smckusick 	 * Body deleted.
4149677Smckusick 	 */
4249677Smckusick 	return (0);
4349677Smckusick }
4449677Smckusick 
45*65791Smckusick void
rmfree(a1,a2,a3)46*65791Smckusick rmfree(a1, a2, a3)
47*65791Smckusick 	struct map *a1;
48*65791Smckusick 	long a2, a3;
4949677Smckusick {
5049677Smckusick 
5149677Smckusick 	/*
5249677Smckusick 	 * Body deleted.
5349677Smckusick 	 */
5449677Smckusick 	return;
5549677Smckusick }
56