Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.14-rc2 8 lines 149 B view raw
1 2/* Yeah. We have copyright on this one. Sure. */ 3 4void rio_pcicopy( char *from, char *to, int amount) 5{ 6 while ( amount-- ) 7 *to++ = *from++; 8}