xref: /NextBSD/contrib/ipfilter/lib/bcopywrap.c (revision e1dd16d965b177f109afb771e59432e36f335d0a)
1 /*	$FreeBSD$	*/
2 
3 /*
4  * Copyright (C) 2012 by Darren Reed.
5  *
6  * See the IPFILTER.LICENCE file for details on licencing.
7  *
8  * $Id$
9  */
10 
11 #include "ipf.h"
12 
bcopywrap(from,to,size)13 int bcopywrap(from, to, size)
14 	void *from, *to;
15 	size_t size;
16 {
17 	bcopy((caddr_t)from, (caddr_t)to, size);
18 	return 0;
19 }
20 
21