2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/* Yeah. We have copyright on this one. Sure. */
|
|
|
|
|
2006-01-11 15:17:49 -05:00
|
|
|
void rio_pcicopy(char *from, char *to, int amount)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2006-01-11 15:17:49 -05:00
|
|
|
while (amount--)
|
|
|
|
*to++ = *from++;
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|