
alloc(n)
{
register char *p;

if(n&1)
	++n;
p = sbrk(n);
if(p == -1)
	error("no more space: asking for %d",n);
return(p);
}

free(p)
char *p;
{
}

