141edb306SCy Schubert 241edb306SCy Schubert /* 341edb306SCy Schubert * Copyright (C) 2012 by Darren Reed. 441edb306SCy Schubert * 541edb306SCy Schubert * See the IPFILTER.LICENCE file for details on licencing. 641edb306SCy Schubert * 741edb306SCy Schubert * $Id$ 841edb306SCy Schubert */ 941edb306SCy Schubert 1041edb306SCy Schubert #include "ipf.h" 1141edb306SCy Schubert 12efeb8bffSCy Schubert int bcopywrap(void * from,void * to,size_t size)13efeb8bffSCy Schubertbcopywrap(void *from, void *to, size_t size) 1441edb306SCy Schubert { 1541edb306SCy Schubert bcopy((caddr_t)from, (caddr_t)to, size); 16*2582ae57SCy Schubert return (0); 1741edb306SCy Schubert } 1841edb306SCy Schubert 19