BSD 4_4 development
[unix-history] / usr / src / old / lisp / franz / rlc.c
#ifndef lint
static char *rcsid =
"$Header: rlc.c,v 1.5 87/12/14 17:19:20 sklower Exp $";
#endif
/* -[Sat Jan 29 13:32:26 1983 by jkf]-
* rlc.c $Locker: $
* relocator for data space
*
* (c) copyright 1982, Regents of the University of California
*/
#define TRUE 1
#include "h/global.h"
#if vax_4_2 | vax_4_3 | tahoe_4_3
#define brk(p) syscall(17,p)
#endif
extern char holend[], end[];
extern int usehole;
extern char *curhbeg;
rlc()
{
char *cp, *dp;
brk(end);
dp = holend;
cp = dp - HOLE;
while (dp < end)
*dp++ = *cp++;
curhbeg = holend - HOLE; /* set up the hole */
usehole = TRUE;
}