1/*	$NetBSD: kmemcpywrap.c,v 1.2 2012/02/15 17:55:06 riz Exp $	*/
2
3/*
4 * Copyright (C) 2002 by Darren Reed.
5 *
6 * See the IPFILTER.LICENCE file for details on licencing.
7 *
8 * Id: kmemcpywrap.c,v 1.1.4.2 2009/12/27 06:58:06 darrenr Exp
9 */
10
11#include "ipf.h"
12#include "kmem.h"
13
14int kmemcpywrap(from, to, size)
15void *from, *to;
16size_t size;
17{
18	int ret;
19
20	ret = kmemcpy((caddr_t)to, (u_long)from, size);
21	return ret;
22}
23
24