xref: /netbsd-src/external/bsd/ipf/dist/lib/bcopywrap.c (revision 13885a665959c62f13a82b3caedf986eaa17aa31)
1 /*	$NetBSD: bcopywrap.c,v 1.2 2012/07/22 14:27:36 darrenr Exp $	*/
2 
3 /*
4  * Copyright (C) 2012 by Darren Reed.
5  *
6  * See the IPFILTER.LICENCE file for details on licencing.
7  *
8  * Id: bcopywrap.c,v 1.1.1.2 2012/07/22 13:44:38 darrenr Exp $
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