1 #include "ipf.h" 2 #include "kmem.h" 3 4 int kmemcpywrap(from, to, size) 5 void *from, *to; 6 size_t size; 7 { 8 int ret; 9 10 ret = kmemcpy((caddr_t)to, (u_long)from, size); 11 return ret; 12 } 13 14