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