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