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