xref: /titanic_41/usr/src/cmd/ipf/lib/common/bcopywrap.c (revision 7a4f122cf63a91c2888629e433b5f5ee7536a802)
1 #include "ipf.h"
2 
3 int bcopywrap(from, to, size)
4 void *from, *to;
5 size_t size;
6 {
7 	bcopy((caddr_t)from, (caddr_t)to, size);
8 	return 0;
9 }
10 
11