linux/drivers/char/rio/riopcicopy.c

9 lines
143 B
C

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