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