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