]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/ipf/libipf/bcopywrap.c
ipfilter: Adjust userland returns to conform to style(9)
[FreeBSD/FreeBSD.git] / sbin / ipf / libipf / bcopywrap.c
1 /*      $FreeBSD$       */
2
3 /*
4  * Copyright (C) 2012 by Darren Reed.
5  *
6  * See the IPFILTER.LICENCE file for details on licencing.
7  *
8  * $Id$
9  */
10
11 #include "ipf.h"
12
13 int
14 bcopywrap(void *from, void *to, size_t size)
15 {
16         bcopy((caddr_t)from, (caddr_t)to, size);
17         return(0);
18 }
19