xref: /freebsd/sbin/ipf/libipf/bcopywrap.c (revision 2a63c3be158216222d89a073dcbd6a72ee4aab5a)
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
bcopywrap(void * from,void * to,size_t size)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