1
0
Fork 0
alistair23-linux/drivers/char/rio/riopcicopy.c

9 lines
149 B
C

/* Yeah. We have copyright on this one. Sure. */
void rio_pcicopy( char *from, char *to, int amount)
{
while ( amount-- )
*to++ = *from++;
}