Minix1.5/lib/other/stb.c

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

#include <lib.h>
 /* library routine for copying structs with unpleasant alignment */

void __stb(n, f, t)
register char *f, *t;
register int n;
{
  if (n > 0) do
		*t++ = *f++;
	while (--n);
}