blob: e61266275557bc021279fc112e4092d9c9142080 [file] [log] [blame] [raw]
Darren Reed6b03a342007-08-21 15:22:35 +00001/*
2 * Copyright (C) 2002 by Darren Reed.
3 *
4 * See the IPFILTER.LICENCE file for details on licencing.
Martti Kuparinen4a04f462007-10-25 09:29:36 +00005 *
Darren Reed6b03a342007-08-21 15:22:35 +00006 * $Id$
Martti Kuparinen4a04f462007-10-25 09:29:36 +00007 */
Darren Reed6b03a342007-08-21 15:22:35 +00008
cvs2git55401132006-06-15 16:38:29 +00009#include "ipf.h"
10
11int bcopywrap(from, to, size)
Martti Kuparinen6d3457f2007-10-26 05:34:01 +000012void *from, *to;
13size_t size;
cvs2git55401132006-06-15 16:38:29 +000014{
15 bcopy((caddr_t)from, (caddr_t)to, size);
16 return 0;
17}
18