xref: /titanic_51/usr/src/cmd/ipf/lib/common/bcopywrap.c (revision e5803b76927480e8f9b67b22201c484ccf4c2bcf)
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