summaryrefslogtreecommitdiff
path: root/dviware/umddvi/misc/bcopy.c
blob: 99a72e297934dddd88547d5ef6673ae728742cee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef lint
static char rcsid[] = "$Header$";
#endif

/*
 * Sample bcopy() routine.
 * This should be rewritten to be as fast as possible for your
 * machine.
 */
bcopy(from, to, count)
	register char *from, *to;
	register int count;
{

	while (--count >= 0)
		*to++ = *from++;
}