2.9BSD/usr/contrib/mh/subs/copy.c

Compare this file to the similar file:
Show the results in this format:

char *copy(from,to)
register char *from, *to;
{
	while(*to++ = *from++);
	return to-1;
};