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