]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/kmemcpywrap.c
Import IP-Filter 5.1.2 into vendor branches using the existing license that
[FreeBSD/FreeBSD.git] / lib / kmemcpywrap.c
1 /*
2  * Copyright (C) 2012 by Darren Reed.
3  *
4  * See the IPFILTER.LICENCE file for details on licencing.
5  *
6  * $Id$
7  */
8
9 #include "ipf.h"
10 #include "kmem.h"
11
12 int kmemcpywrap(from, to, size)
13         void *from, *to;
14         size_t size;
15 {
16         int ret;
17
18         ret = kmemcpy((caddr_t)to, (u_long)from, size);
19         return ret;
20 }
21