1*7c478bd9Sstevel@tonic-gate #include "ipf.h" 2*7c478bd9Sstevel@tonic-gate bcopywrap(from,to,size)3*7c478bd9Sstevel@tonic-gateint bcopywrap(from, to, size) 4*7c478bd9Sstevel@tonic-gate void *from, *to; 5*7c478bd9Sstevel@tonic-gate size_t size; 6*7c478bd9Sstevel@tonic-gate { 7*7c478bd9Sstevel@tonic-gate bcopy((caddr_t)from, (caddr_t)to, size); 8*7c478bd9Sstevel@tonic-gate return 0; 9*7c478bd9Sstevel@tonic-gate } 10*7c478bd9Sstevel@tonic-gate 11