repo.or.cz
/
unleashed
/
lotheac.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move /var/svc/log to /var/log/svc
[unleashed/lotheac.git]
/
usr
/
src
/
cmd
/
ipf
/
lib
/
common
/
bcopywrap.c
blob
1800373c1d1b4dd4781becaf54a93dea2d85554b
1
#include
"ipf.h"
2
3
int
bcopywrap
(
from
,
to
,
size
)
4
void
*
from
, *
to
;
5
size_t
size
;
6
{
7
bcopy
((
caddr_t
)
from
, (
caddr_t
)
to
,
size
);
8
return
0
;
9
}
10