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