OpenSolaris_b135/cmd/ipf/lib/common/bcopywrap.c

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

#include "ipf.h"

int bcopywrap(from, to, size)
void *from, *to;
size_t size;
{
	bcopy((caddr_t)from, (caddr_t)to, size);
	return 0;
}