]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/ipfilter/lib/bcopywrap.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / ipfilter / lib / bcopywrap.c
1 /*      $FreeBSD$       */
2
3 /*
4  * Copyright (C) 2002 by Darren Reed.
5  *
6  * See the IPFILTER.LICENCE file for details on licencing.
7  *   
8  * $Id: bcopywrap.c,v 1.1.4.1 2006/06/16 17:20:56 darrenr Exp $
9  */  
10
11 #include "ipf.h"
12
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