xref: /freebsd/sbin/ipf/libipf/bcopywrap.c (revision c03c5b1c)
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 
13 int
14 bcopywrap(void *from, void *to, size_t size)
15 {
16 	bcopy((caddr_t)from, (caddr_t)to, size);
17 	return (0);
18 }
19 
20