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
Merge remote-tracking branch 'origin/master'
[unleashed/lotheac.git]
/
usr
/
src
/
cmd
/
ipf
/
lib
/
common
/
kmemcpywrap.c
blob
35715dc63d514d99be4a2260d35cc028889deb74
1
#include
"ipf.h"
2
#include
"kmem.h"
3
4
int
kmemcpywrap
(
from
,
to
,
size
)
5
void
*
from
, *
to
;
6
size_t
size
;
7
{
8
int
ret
;
9
10
ret
=
kmemcpy
((
caddr_t
)
to
, (
u_long
)
from
,
size
);
11
return
ret
;
12
}
13