xref: /freebsd/sbin/ipf/libipf/bcopywrap.c (revision e51b3d8e53cee7d6a36e34e1cd4d588593d71b40)
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