Rivoreo Source Code Repositories
src.rivoreo.one
/
net
/
ipfilter
/
v5.1.2-rivoreo-r1
/
.
/
lib
/
bcopywrap.c
blob: d6ebac1da46cac59ce8e298c71e0fdb6c5dbe14d [
file
] [
log
] [
blame
] [
raw
]
/*
* Copyright (C) 2012 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* $Id$
*/
#include
"ipf.h"
int
bcopywrap
(
from
,
to
,
size
)
void
*
from
,
*
to
;
size_t
size
;
{
bcopy
((
caddr_t
)
from
,
(
caddr_t
)
to
,
size
);
return
0
;
}