1/*	$NetBSD: bcopywrap.c,v 1.1.1.3 2010/04/17 20:45:57 darrenr Exp $	*/
2
3/*
4 * Copyright (C) 2002 by Darren Reed.
5 *
6 * See the IPFILTER.LICENCE file for details on licencing.
7 *
8 * Id: bcopywrap.c,v 1.1.4.2 2009/12/27 06:58:06 darrenr Exp
9 */
10
11#include "ipf.h"
12
13int bcopywrap(from, to, size)
14void *from, *to;
15size_t size;
16{
17	bcopy((caddr_t)from, (caddr_t)to, size);
18	return 0;
19}
20
21