Sync usage with man page.
[netbsd-mini2440.git] / dist / ipf / lib / bcopywrap.c
blob2ced1cfe8e899d93780ab2a950761b7d3b16c1c9
1 /* $NetBSD$ */
3 /*
4 * Copyright (C) 2002 by Darren Reed.
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 */
11 #include "ipf.h"
13 int bcopywrap(from, to, size)
14 void *from, *to;
15 size_t size;
17 bcopy((caddr_t)from, (caddr_t)to, size);
18 return 0;