Sync usage with man page.
[netbsd-mini2440.git] / dist / ipf / lib / kmemcpywrap.c
blob978a7cbeea7f9e73be4c2ca587d6870048f9ead4
1 /* $NetBSD$ */
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.1 2006/06/16 17:21:05 darrenr Exp
9 */
11 #include "ipf.h"
12 #include "kmem.h"
14 int kmemcpywrap(from, to, size)
15 void *from, *to;
16 size_t size;
18 int ret;
20 ret = kmemcpy((caddr_t)to, (u_long)from, size);
21 return ret;