Sign in
zircon-guest
/
third_party
/
linux
/
1da177e4c3f41524e886b7f1b8a0c1fc7321cac2
/
.
/
drivers
/
char
/
rio
/
riopcicopy.c
blob: 2ea99a60aa326a899d9574c9d727b934be4e9482 [
file
] [
log
] [
blame
]
/* Yeah. We have copyright on this one. Sure. */
void
rio_pcicopy
(
char
*
from
,
char
*
to
,
int
amount
)
{
while
(
amount
--
)
*
to
++
=
*
from
++;
}